Updated the ISA so the program will correctly see things like 'load', 'inc' and 'dec'.

This commit is contained in:
2022-10-03 16:56:39 +00:00
parent a0d5d62a34
commit a949007c75
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ typedef enum {
} Registers;
typedef enum {
COPY, ADD, SUB, JZ, INT, YLD, RET,
CMP, NOP, JMP, CALL, IN, OUT,
ADD, SUB, JZ, INT, YLD, RET,
CMP, NOP, JMP, CALL, LOAD, JE, INC, DEC, LOADB
} Mnemonic;
typedef enum {