From 4d9b8a04f2b38985470d61971fc7b04104a22937 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 16 Oct 2023 01:19:08 +0100 Subject: Fixed error with OP_PUSH where bits weren't in the pattern of data_type_t --- src/inst.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/inst.h') diff --git a/src/inst.h b/src/inst.h index da58434..e5c6146 100644 --- a/src/inst.h +++ b/src/inst.h @@ -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, -- cgit v1.2.3-13-gbd6f