aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode/ops.h')
-rwxr-xr-xsrc/bytecode/ops.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bytecode/ops.h b/src/bytecode/ops.h
index b58631f..b59d65a 100755
--- a/src/bytecode/ops.h
+++ b/src/bytecode/ops.h
@@ -8,6 +8,14 @@ typedef enum Ops {
8 OP_MUL, 8 OP_MUL,
9 OP_DIV, 9 OP_DIV,
10 OP_MOD, 10 OP_MOD,
11 OP_NOT,
12 OP_AND,
13 OP_OR,
14 OP_EQUAL,
15 OP_LESS,
16 OP_GREATER,
17 OP_LESS_EQUAL,
18 OP_GREATER_EQUAL,
11 OP_RETURN, 19 OP_RETURN,
12} Ops; 20} Ops;
13 21