View Single Post
Old 23 May 2019, 15:03   #2
roondar
Registered User
 
Join Date: Jul 2015
Location: The Netherlands
Posts: 3,427
The problem I've spotted is that your screen buffers are not aligned correctly. You're using the AGA 4x display fetch mode, which requires your screen buffers to be aligned to multiples of 8 bytes (for each plane).

I.E. try something like
Code:
CNOP 0,8 
Screen: <blah> 
CNOP 0,8 
Screen2: <blah>
If you're not using VASM, replace CNOP 0,8 with the correct assembler directive for alignment here.

Note: I haven't read your code in depth so I may have missed something else, but the above is definitely needed for AGA 4x fetch mode to work correctly.
roondar is offline  
 
Page generated in 0.04284 seconds with 11 queries