This program takes Hack machine code as input and executes it.
- Variables should be
> 1024not< 1024 - Create window for screen using github.com/emoon/minifb if --screen option is given
Hack machine code has two types of instructions: 'A' and 'C'.
- A-type instructions simply setup C-type instructions by manipulating the A-register.
- C-type instructions perform some computation operation.
0 000000000100101
- Leading
0means A-type. - Remaining
15bits are a value to store into the A-register. - Written in assembly as
@37(load decimal 37 to A-register).
1 _ _ a c1 c2 c3 c4 c5 c6 d1 d2 d3 j1 j2 j3
- Leading
1means C-type. - Proceeding 2 bits are ignored.
a-bit and the 6c-bits represent the computation to be executed.
Destination bits (d1, d2 & d3)
Jump bits (j1, j2, j3)


