summaryrefslogtreecommitdiff
path: root/vm.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-21 00:25:55 +0100
committerubq323 <ubq323@ubq323.website>2024-06-21 00:25:55 +0100
commita03973653262fbbfed7ce42dfa39646d16bdc98f (patch)
treefcf222d1e67b715af8173fda8edcab3b6c0793cd /vm.h
parentf331192861d8ba02af7fd47f2e0c6d6db7515007 (diff)
while loops, comparisons, modulo, fizzbuzz
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/vm.h b/vm.h
index 81abea3..609ed2c 100644
--- a/vm.h
+++ b/vm.h
@@ -44,6 +44,11 @@ typedef enum {
OP_SUB,
OP_MUL,
OP_DIV,
+ OP_MOD,
+
+ OP_EQU,
+ OP_CMP,
+
OP_DROP,