aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/inst.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/inst.h b/src/inst.h
index 07944ff..a2d441e 100644
--- a/src/inst.h
+++ b/src/inst.h
@@ -24,25 +24,25 @@ typedef enum
OP_PUSH_WORD = 0b00000101,
OP_PUSH_FLOAT = 0b00001001,
// 0b0010
- OP_MOV_BYTE = 0b00000010,
- OP_MOV_WORD = 0b00000110,
- OP_MOV_FLOAT = 0b00001010,
+ OP_PUSH_BREG = 0b00000010,
+ OP_PUSH_WREG = 0b00000110,
+ OP_PUSH_FREG = 0b00001010,
// 0b0100
OP_POP_BYTE = 0b00000100,
OP_POP_WORD = 0b00001100,
OP_POP_FLOAT = 0b00010100,
// 0b1000
- OP_PUSH_BREG = 0b00001000,
- OP_PUSH_WREG = 0b00011000,
- OP_PUSH_FREG = 0b00101000,
+ OP_MOV_BYTE = 0b00001000,
+ OP_MOV_WORD = 0b00011000,
+ OP_MOV_FLOAT = 0b00101000,
OP_HALT,
} opcode_t;
#define OPCODE_IS_PUSH(OPCODE) (((OPCODE)&0b1) == 0b1)
-#define OPCODE_IS_MOV(OPCODE) (((OPCODE)&0b10) == 0b10)
+#define OPCODE_IS_PUSH_REG(OPCODE) (((OPCODE)&0b10) == 0b10)
#define OPCODE_IS_POP(OPCODE) (((OPCODE)&0b100) == 0b100)
-#define OPCODE_IS_PUSH_REG(OPCODE) (((OPCODE)&0b1000) == 0b1000)
+#define OPCODE_IS_MOV(OPCODE) (((OPCODE)&0b1000) == 0b1000)
typedef struct
{