From f331192861d8ba02af7fd47f2e0c6d6db7515007 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Thu, 20 Jun 2024 23:26:18 +0100 Subject: add (if cond if-true if-false) builtin --- vm.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vm.h') diff --git a/vm.h b/vm.h index e184426..81abea3 100644 --- a/vm.h +++ b/vm.h @@ -53,6 +53,10 @@ typedef enum { OP_TRUE, OP_FALSE, OP_NIL, + + OP_0BRANCH, + OP_SKIP, + OP_REDO, } Op; int runvm(State *S); -- cgit v1.2.3