Re: A83: Storing Values


[Prev][Next][Index][Thread]

Re: A83: Storing Values



wow there andrew, don't you think you are getting a little complex, I think
that on the 83 you can do it this way

make a space at the end of the program like where your strings are like this

highscore
 .db 0

this defines a byte at the end of the program
 then when somebody get a highscore <in the a reg> just go this
ld hl, highscore
ld (hl), a
and this will store the highscore in the program
Get it?
Gerad
Tell me if I am wrong because that is how you do it on the 82


Follow-Ups: