4 ms·
To be fair, the 256 byte stack can essentially be used in assembly as 256 registers, which is also one of the features (along with indirect addressing) that mak
by bopbop 7y ago
To be fair, the 256 byte stack can essentially be used in assembly as 256 registers, which is also one of the features (along with indirect addressing) that make assembly on it awesome.
My relatively poorly researched impression of it is that it's half-way to portable C, with a proto-stack and pointers, essentially.
- jim_lawless 7y agoYou're thinking of zero page ($0000-$00ff), not the stack $0100-$01FF).
- bopbop 7y agoYes I am! Thanks!