aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/chunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/chunk.h')
-rw-r--r--clox/src/chunk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/clox/src/chunk.h b/clox/src/chunk.h
index 399a514..4194e8c 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -9,6 +9,8 @@ typedef enum {
OP_NIL,
OP_TRUE,
OP_FALSE,
+ OP_POP,
+ OP_DEFINE_GLOBAL,
OP_EQUAL,
OP_GREATER,
OP_LESS,
@@ -18,6 +20,7 @@ typedef enum {
OP_DIVIDE,
OP_NOT,
OP_NEGATE,
+ OP_PRINT,
OP_RETURN,
} OpCode;