From 5632b65540687ac89f154fde1acae023ecd894d2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 20 Feb 2023 19:28:46 -0500 Subject: fix execution lookup; add unloop --- state.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'state.cpp') diff --git a/state.cpp b/state.cpp index 2f1990b..16a573e 100644 --- a/state.cpp +++ b/state.cpp @@ -40,7 +40,7 @@ void State::compiling(bool yes) void State::execute(Addr addr) { - if (addr < Dictionary::Begin) { + if (addr < CoreWords::WordCount) { // Must be a core-word CoreWords::run(addr, *this); } else { @@ -51,7 +51,9 @@ void State::execute(Addr addr) ip += sizeof(Cell); const auto ins = dict.read(ip); - if (!CoreWords::run(ins, *this)) { + if (ins < CoreWords::WordCount) { + CoreWords::run(ins, *this); + } else { pushr(ip); ip = ins - sizeof(Cell); } -- cgit v1.2.3