Re: A82: A simple question


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

Re: A82: A simple question




In a message dated 98-07-15 15:03:42 EDT, you write:

> Exactly what are the 
>  Blahblahblah = TEXT_MEM
>  Blahblahblah2  = TEXT_MEM+1
>  things at the beginning of a program used for?  I'm thinking it's a place
>  to store data instead of pushing/pooping a register all the time.  Like
>  having ~26 variables in Ti-Basic
>  Larry C
>  Larry1492@juno.com
>  

aliases, so instead of saying ld a, (TEXT_MEM), you can say ld a,
(Blahblahblah).  in fact, TEXT_MEM is an alias itself.

~Adamman