2003-07-01 03:38 AM
2003-06-30 08:16 PM
I use ST7FLITE05.
I want to initialize all the RAM with zero at the beginning of my application. How to do? (code in assembler language?) Thanks, Murielle2003-06-30 10:09 PM
Hi,
Try this: ld X, #64 lp clr ($7f,X) dec X jrne lp this only clears $80 - $bf, it does not cross into the stack area hope this helps, regards Simon [ This message was edited by: sjh on 12-11-2003 16:25 ]2003-07-01 03:38 AM
It's perfect!
Thanks, Murielle