diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
commit | 0b88b4596e6265863e75e7aabcca52734e147fae (patch) | |
tree | 2210e75d0b5eff6e462770e5278a1baf504423b0 /state.cpp | |
parent | 914a75b2097090595d12015b750f97dc55bf7dcd (diff) |
compact implementation; runs on msp430
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 27 |
1 files changed, 17 insertions, 10 deletions
@@ -31,19 +31,26 @@ void State::compiling(bool yes) dict.write(Dictionary::Compiling, yes); } -void State::execute(Addr addr) +State::Error State::execute(Addr addr) { - if (addr < CoreWords::WordCount) { - CoreWords::run(addr, *this); - } else { - pushr(0); - ip = addr - sizeof(Cell); + auto stat = setjmp(jmpbuf); + if (!stat) { + if (addr < CoreWords::WordCount) { + CoreWords::run(addr, *this); + } else { + pushr(0); + ip = addr - sizeof(Cell); - do { - ip += sizeof(Cell); - CoreWords::run(dict.read(ip), *this); - } while (ip); + do { + ip += sizeof(Cell); + CoreWords::run(dict.read(ip), *this); + } while (ip); + } + } else { + return static_cast<State::Error>(stat); } + + return State::Error::none; } std::size_t State::size() const noexcept |