Posted By
 Csabo on 2017-12-06 08:45:44
| Re: Does the Plus/4 support some form of VARPTR() command?
Cool, you guys said it all, except this one minor detail - which I think is worth mentioning: the code cannot contain a $00 byte, since that will break the BASIC interpreter. This is usually not a big deal though and can be worked around easily. (E.g. instead of LDX#$00, one can write LDX#$01/DEX, or just re-work how that loop works, etc.) |