Re: A89: LCD_MEM
[Prev][Next][Index][Thread]
Re: A89: LCD_MEM
In a message dated 99-08-22 19:33:10 EDT, you write:
> how would I use LCD_MEM to save my tilemap? All I know is that I need to
use
> that to save it but, I don't know how. Thank you for your trouble.
>
do you mean just save the 'screen' well couldn't you just start moving the
longwords starting at (lcdmem) to another free memory location...similiar to
clearing the screen...instead...just copying it...
something like:
move.l #lcdmem,a1
move.l (a1)+, freelocation
then loop it for how many times necessary?
-Steven