Forum: Coders. Asm / Hardware
24 June 2022, 18:53
|
Replies: 19
Views: 932
Ah, ok, sorry, you know very well how to do...
Ah, ok, sorry, you know very well how to do hardware scrolling and I had to understand that you meant something else.. :)
But we don't know the speed at which mcgeezer wants to do it, it could also...
|
Forum: support.WinUAE
24 June 2022, 18:44
|
Replies: 3
Views: 500
|
Forum: Coders. Asm / Hardware
24 June 2022, 18:32
|
Replies: 19
Views: 932
Wait, too much pessimism here :)
(even if in...
Wait, too much pessimism here :)
(even if in fact what mcgeezer wants to do cannot be done :p)
@a/b: true, but you can start reload data/b/pos immediately after first sprite display, so you can...
|
Forum: Coders. Asm / Hardware
22 June 2022, 22:07
|
Replies: 9
Views: 601
; a0 = copperlist
move.l...
; a0 = copperlist
move.l #$17dffffe,(a0)+ ; wait (first cw frame fetch)
move.w #$01fc,(a0)+ ;
move.w #%0000000000001100,(a0)+ ; lutin en 64 bits
move.l...
|
Forum: Coders. Asm / Hardware
22 June 2022, 00:00
|
Replies: 9
Views: 601
|
Forum: Coders. Asm / Hardware
21 June 2022, 20:22
|
Replies: 9
Views: 601
|
Forum: Coders. Asm / Hardware
21 June 2022, 19:38
|
Replies: 9
Views: 601
|
Forum: Amiga scene
18 June 2022, 20:48
|
Replies: 10
Views: 727
|
Forum: Coders. Asm / Hardware
17 June 2022, 19:32
|
Replies: 23
Views: 1,575
Yes, you could; or better, an Amiga ECS+ allows...
Yes, you could; or better, an Amiga ECS+ allows it.
But I have no idea if there are monitors that appreciate ~31KHz horizontal, ~120Hz vertical and 200 visible video lines (~262 raw video lines) :)...
|
Forum: Coders. Asm / Hardware
17 June 2022, 18:15
|
Replies: 23
Views: 1,575
CRT technology is not the problem, but the...
CRT technology is not the problem, but the support of those frequencies. Not a problem at all for a good multisync, but a big no-no on any 15Kz TV or monitor.
However it seems to me that you are...
|
Forum: Coders. Asm / Hardware
17 June 2022, 15:35
|
Replies: 23
Views: 1,575
|
Forum: Amiga scene
17 June 2022, 15:33
|
Replies: 29
Views: 2,583
|
Forum: support.WinUAE
17 June 2022, 15:16
|
Replies: 24
Views: 1,216
|
Forum: Coders. Asm / Hardware
17 June 2022, 14:10
|
Replies: 23
Views: 1,575
|
Forum: Amiga scene
17 June 2022, 14:02
|
Replies: 29
Views: 2,583
Thanks :)
Just out of curiosity.. What is...
Thanks :)
Just out of curiosity.. What is the configuration you used for the tests?
Because the game seems to dynamically allocate memory (does it use it as a cache?) and in many cases it fails...
|
Forum: support.WinUAE
17 June 2022, 13:39
|
Replies: 24
Views: 1,216
Maybe it's better to clarify a bit..
Perfect...
Maybe it's better to clarify a bit..
Perfect and better emulation requires neither "Immediate Blitter" nor "Wait for blitter".
"Immediate Blitter" does what it says: the blitter operation is...
|
Forum: Coders. Asm / Hardware
17 June 2022, 12:13
|
Replies: 23
Views: 1,575
|
Forum: Amiga scene
17 June 2022, 12:00
|
Replies: 29
Views: 2,583
Thanks Galahad and all involved! :)
Yes,...
Thanks Galahad and all involved! :)
Yes, this is totally unplayable from floppy, so .. how about a two-disc version?
I'm pretty sure I can do one in no time (game exe need to be patched), I...
|
Forum: Coders. Asm / Hardware
12 June 2022, 11:07
|
Replies: 23
Views: 1,575
It's the opposite, you have to lower the...
It's the opposite, you have to lower the frequency (both horizontal and vertical), if you are using EURO72.
But anyway yes, the concept is that :)
EDIT:
in fact in ECS and AGA you can vary the...
|
Forum: Coders. Asm / Hardware
11 June 2022, 20:36
|
Replies: 23
Views: 1,575
|
Forum: support.WinUAE
11 June 2022, 17:22
|
Replies: 286
Views: 100,563
|
Forum: Coders. Asm / Hardware
11 June 2022, 10:36
|
Replies: 23
Views: 1,575
|
Forum: Coders. Asm / Hardware
09 June 2022, 09:09
|
Replies: 224
Views: 222,468
|
Forum: Coders. Asm / Hardware
09 June 2022, 01:04
|
Replies: 224
Views: 222,468
|
Forum: Coders. Asm / Hardware
09 June 2022, 00:52
|
Replies: 224
Views: 222,468
|
Forum: Coders. Asm / Hardware
09 June 2022, 00:47
|
Replies: 224
Views: 222,468
|
Forum: Coders. Asm / Hardware
08 June 2022, 22:31
|
Replies: 224
Views: 222,468
|
Forum: Coders. Asm / Hardware
08 June 2022, 22:17
|
Replies: 224
Views: 222,468
|
Forum: support.WinUAE
08 June 2022, 21:39
|
Replies: 912
Views: 256,030
|
Forum: Coders. Asm / Hardware
08 June 2022, 12:01
|
Replies: 19
Views: 702
There is also a third way:
xpos dc.w 0
ypos...
There is also a third way:
xpos dc.w 0
ypos dc.w 0
cpos dc.w 1
i.e. insert a non-zero data value as the last variable.
So you no longer have to worry about compiler / linker specific (default)...
|
Forum: Coders. Asm / Hardware
07 June 2022, 23:24
|
Replies: 19
Views: 702
Yes.
This is not possible. 'state'...
Yes.
This is not possible. 'state' variables are static, and bytes at 0 are inserted in the exe file.
The only possibility that comes to mind is that they are bss data entered as CODE_BSS...
|
Forum: support.WinUAE
06 June 2022, 22:45
|
Replies: 912
Views: 256,030
|
Forum: Coders. System
05 June 2022, 11:08
|
Replies: 15
Views: 743
|
Forum: Coders. System
04 June 2022, 20:05
|
Replies: 15
Views: 743
|
Forum: Coders. Asm / Hardware
02 June 2022, 16:32
|
Replies: 9
Views: 668
I'd do something like this:
...
I'd do something like this:
include doshunks.i
bsr readLongIntoD0
cmpi.w #HUNK_BREAK,d0
bhi.b unsupported_hunk
subi.w #HUNK_UNIT,d0
bmi.b unsupported_hunk
|
Forum: Member Introductions
02 June 2022, 11:10
|
Replies: 49
Views: 16,839
Rock Lobster time!
...
Rock Lobster time!
https://www.youtube.com/watch?v=n4QSYx4wVQg
Birthday. 52. :D. :great.
https://eab.abime.net/attachment.php?attachmentid=75726&stc=1&d=1654160921
|
Forum: Coders. Asm / Hardware
28 May 2022, 15:57
|
Replies: 31
Views: 2,459
|
Forum: Coders. Asm / Hardware
28 May 2022, 14:37
|
Replies: 31
Views: 2,459
It is the exact opposite: since even cycles are...
It is the exact opposite: since even cycles are free, the copper can use them all (at least as long as the active bitplanes are <= 4 and lo-res).
The Blitter and the CPU have lower priority, so if...
|
Forum: Coders. Asm / Hardware
25 May 2022, 18:11
|
Replies: 224
Views: 222,468
Yes, this is faster:
move.l ...
Yes, this is faster:
move.l (127*4,a0),d0
sub.l (126*4,a0),d0
Also on bare 68k (EDIT: of course even if it were only (ax,dx.l),d0 ;)).
|
Forum: Coders. Asm / Hardware
24 May 2022, 11:57
|
Replies: 31
Views: 2,459
|