4 uint64_t C
; //Carry (or Unsigned Overflow)
5 uint64_t V
; //Overflow (Signed)
7 uint64_t PC
; //Program Counter
9 uint64_t *mem
; //Memory
11 void start_cpu(); //Start emulating the CPU
12 void stop_cpu(); //Stop emulating the CPU
13 void interpret(uint64_t opcode
); /* emulate opcode */