aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode/ops.h')
-rw-r--r--src/bytecode/ops.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bytecode/ops.h b/src/bytecode/ops.h
index 79092ab..b58631f 100644
--- a/src/bytecode/ops.h
+++ b/src/bytecode/ops.h
@@ -3,6 +3,11 @@
3 3
4typedef enum Ops { 4typedef enum Ops {
5 OP_CONSTANT, 5 OP_CONSTANT,
6 OP_SUM,
7 OP_SUB,
8 OP_MUL,
9 OP_DIV,
10 OP_MOD,
6 OP_RETURN, 11 OP_RETURN,
7} Ops; 12} Ops;
8 13