Re: A86: Self Modifying Assembly Programs
[Prev][Next][Index][Thread]
Re: A86: Self Modifying Assembly Programs
Mark L wrote:
>
> When you need to save a high score or other information on the calc
> between uses, what is necessary to store the information within the
> program itself?
no you can store it in outside variables (most common is a string or
program)
> Can you just leave some room with .db's and then write it to that area
> when you want to, or does that violate some checksum or something?
yeah that would be a syntax error because what you are trying to do is
make a place for data after the program that is 0 bytes long
References: