From 604604e8bc8476cfbd0e4353bd97400f50971786 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 4 Aug 2023 14:46:49 +1000 Subject: [PATCH] Two opcodes weren't being used, resolved #98 --- source/toy_opcodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/toy_opcodes.h b/source/toy_opcodes.h index 08d774a..93e7277 100644 --- a/source/toy_opcodes.h +++ b/source/toy_opcodes.h @@ -29,8 +29,8 @@ typedef enum Toy_Opcode { TOY_OP_SCOPE_BEGIN, TOY_OP_SCOPE_END, - TOY_OP_TYPE_DECL, //declare a type to be used (as a literal) - TOY_OP_TYPE_DECL_LONG, //declare a type to be used (as a long literal) + TOY_OP_TYPE_DECL_removed, + TOY_OP_TYPE_DECL_LONG_removed, TOY_OP_VAR_DECL, //declare a variable to be used (as a literal) TOY_OP_VAR_DECL_LONG, //declare a variable to be used (as a long literal)