Fixed error with OP_PUSH where bits weren't in the pattern of data_type_t
This commit is contained in:
@@ -24,8 +24,8 @@ typedef enum
|
|||||||
|
|
||||||
// 0b0001
|
// 0b0001
|
||||||
OP_PUSH_BYTE = 0b00000001,
|
OP_PUSH_BYTE = 0b00000001,
|
||||||
OP_PUSH_WORD = 0b00000101,
|
OP_PUSH_WORD = 0b00000011,
|
||||||
OP_PUSH_FLOAT = 0b00001001,
|
OP_PUSH_FLOAT = 0b00000101,
|
||||||
// 0b0010
|
// 0b0010
|
||||||
OP_PUSH_BYTE_REGISTER = 0b00000010,
|
OP_PUSH_BYTE_REGISTER = 0b00000010,
|
||||||
OP_PUSH_WORD_REGISTER = 0b00000110,
|
OP_PUSH_WORD_REGISTER = 0b00000110,
|
||||||
|
|||||||
Reference in New Issue
Block a user