------------Opcodes (1.0.0+)------------
0 NOP
1 HLT   (Place at the end of program)
2 LDA   (Work RAM begins at 0xff and ends at 0x1fe, Inclusive)
3 STA  
4 LDB
5 STB
6 LDM
7 STM
8 ADD   (M += A)
9 SUB   (M -= A)
A DIV   (M /= A)
B MUL   (M *= A)
C SWP   (Swaps A and B)
D DSP   (Displays Bytes 0x1f9-0x1fe (Signed))
E INC   (Increments B)
F DEC   (Decrements B)

------------Opcodes (1.1.0+)------------
0 NOP
1 HLT   (Place at the end of program)
2 LDA   (Work RAM begins at 0xff and ends at 0x1ff, Inclusive)
3 STA  
4 LDB
5 STB
6 LDM
7 STM
8 ADD   (M += A)
9 SUB   (M -= A)
A DIV   (M /= A)
B MUL   (M *= A)
C SWP   (Swaps A and B)
D DSP   (Displays Bytes 0x03ff-0x0407 (Signed))
E INC   (Increments B)
F DEC   (Decrements B)

------------Memory Map (1.1.0)------------
0x0000 - Program RAM
0x00ff - Work RAM
0x03ff - Display RAM
0x0407 - RAM END