diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 11:45:50 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 11:45:50 -0500 |
commit | ec3b03c4fd2fc9ecad4dd810ba7b6e4766ff286b (patch) | |
tree | a5789c680cd1a4f4a6bd4e462dd21331dc6be553 /libalee/state.cpp | |
parent | e8c9f97f4fa9502b88c8c3a44c5d5f5f1c98d506 (diff) |
remove addNativeWordnative
Diffstat (limited to 'libalee/state.cpp')
-rw-r--r-- | libalee/state.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libalee/state.cpp b/libalee/state.cpp index ed1562f..cb3a2d3 100644 --- a/libalee/state.cpp +++ b/libalee/state.cpp @@ -54,8 +54,10 @@ Error State::execute(Addr addr) if (context.ip >= Dictionary::Begin) { // longjmp will exit this loop. - for (;;) + for (;;) { + context.ip += sizeof(Cell); CoreWords::run(dict.read(context.ip), *this); + } } else { // addr was a CoreWord, all done now. context.ip = 0; |