
The machine had 32 words of 32 bit memory, one register and supported 7 instructions:
| 000 | JMP | s, C | Jump | 
| 100 | JRP | c+s, C | Relative Jump | 
| 010 | LDN | -s, A | Load and Negate | 
| 110 | STO | a, S | Store | 
| 001 | SUB | a-s, A | Subtract | 
| 011 | CMP | Test | Skip if Negative | 
| 111 | STOP | Stop | Halt Machine | 
With only 7 instructions the SSEM makes an ideal system for an emulation project. A basic simulator can be written in under 40 Intel x86 instructions. If you're tempted to write your own, the SSEM Reference Manual will come in handy. :-)