Many op-codes have not been included yet, however there are enough to write some simple programs.
I will try to have an example for every op-code.
Examples:
Load: Put a 3 in register A
Mnemonic: Op-code:
LD A,3 0x3E, 0x03
Add: Add 2 to 5
Mnemonic: Op-code:
LD A,5 0x3E, 0x05
LD B,2 0x06, 0x02
ADD A,B 0x80
Subtract: Subtract 3 from 5
Mnemonic: Op-code:
LD A,5 0x3E, 0x05
LD B,3 0x06, 0x03
SUB B 0x90
Hi Ryan, have you tried SPI RAM? I have written a similar emulation for the Arduino DUE (no memory shortage there), but I am planning to migrate it to the Teensy 3.1, using external SPI RAM. Theoretically it could be done by the UNO as well.