aboutsummaryrefslogtreecommitdiffstats
path: root/executor.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-14 14:35:29 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-14 14:35:29 -0500
commita506b65bdd589997195e3f93222c37a539a29a28 (patch)
tree558f259f9e3eb2b8d1a03ced527b649bf0c5ed86 /executor.cpp
parent18bcd5dd0e283100d25ca44e60f1705f3c028456 (diff)
allow byte indexing
Diffstat (limited to 'executor.cpp')
-rw-r--r--executor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/executor.cpp b/executor.cpp
index 30d43fc..0309ca7 100644
--- a/executor.cpp
+++ b/executor.cpp
@@ -22,10 +22,10 @@
int Executor::fullexec(State& state, Addr addr)
{
state.pushr(0);
- state.ip = addr - 1;
+ state.ip = addr - sizeof(Cell);
do {
- ++state.ip;
+ state.ip += sizeof(Cell);
CoreWords::run(state.dict.read(state.ip), state);
} while (state.ip);