- Von-Neuman Style: Ram is where instructions are run from
- 256 bytes of ram
Architecture in ARCHITECTURE.md
Instuction Set in INSTRUCTIONS.md
cmake . and build with any build system or just compile src/ss3vm.cpp and src/ss3as.cpp with any C++ compiler
Check the examples/ directory
ss3as yourprogram.as [-o yourprogram.bin]
- Default output filename is
ssv3.bin
ss3vm yourprogram.bin [--debug] [--step]
- Flags:
--debug- Shows the current instruction being run and the state of the CPU
--step- Only advances to the next instruction if you press [Enter]