diff options
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -40,13 +40,18 @@ void State::compiling(bool yes) void State::execute(Addr addr) { - pushr(0); - ip = addr - sizeof(Cell); - - do { - ip += sizeof(Cell); - CoreWords::run(dict.read(ip), *this); - } while (ip); + if (addr < Dictionary::Begin) { + // Must be a core-word + CoreWords::run(addr, *this); + } else { + pushr(0); + ip = addr - sizeof(Cell); + + do { + ip += sizeof(Cell); + CoreWords::run(dict.read(ip), *this); + } while (ip); + } } Cell State::beyondip() const |