summaryrefslogtreecommitdiff
path: root/test/test-stack.s
AgeCommit message (Collapse)Author
2020-10-06- Made the stack pointer 64 bit, rather than 16 bit.mrb0nk500
This is to allow for making the stack bigger for anything that needs to change the size of it. - Made the SuB Suite set the stack pointer to the end of the usable RAM, and allow for changing the stack size. In this case, the size of the stack is currently set to 192K, with the end of the heap being just below the stack.
2020-04-19Removed most of the commented code, and optimized themrb0nk500
emulator some more. I optimized the emulator by replacing the main loop from a conditional while loop, to an unconditional for loop.
2020-04-17Made both the assembly language monitor, and themrb0nk500
emulator smaller, and faster. I am also starting to make SuBEditor's source code more readable.
2020-01-10Added GPLv2.mrb0nk500
We're now Free Software!!!
2019-12-08Added support for resolving fixup labels.mrb0nk500
AKA, referencing a label before it has been declared yet.
2019-12-07Added support for labels to the assembly languagemrb0nk500
monitor. I also rewrote the fibonacci program to include lables.
2019-12-06Delete opcode.c, since I added all the functionsmrb0nk500
from it into sux.c.