Fixed error with OP_PUSH where bits weren't in the pattern of data_type_t

This commit is contained in:
2023-10-16 01:19:08 +01:00
parent a4c9b85c79
commit 4d9b8a04f2

View File

@@ -24,8 +24,8 @@ typedef enum
// 0b0001
OP_PUSH_BYTE = 0b00000001,
OP_PUSH_WORD = 0b00000101,
OP_PUSH_FLOAT = 0b00001001,
OP_PUSH_WORD = 0b00000011,
OP_PUSH_FLOAT = 0b00000101,
// 0b0010
OP_PUSH_BYTE_REGISTER = 0b00000010,
OP_PUSH_WORD_REGISTER = 0b00000110,