diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-26 19:54:29 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-26 19:54:29 -0400 |
commit | 5ee8f7e01dfbcb03c705f8bb6f252c2f1b829b46 (patch) | |
tree | 1c444cf6d11b31b8b072ca91272a0771d88f44aa /alee-standalone.cpp | |
parent | 6b1955a69ed1dcb218ebc33fa22c6681924dff15 (diff) |
add .R PAD U.R U> UNUSED WITHIN
Diffstat (limited to 'alee-standalone.cpp')
-rw-r--r-- | alee-standalone.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/alee-standalone.cpp b/alee-standalone.cpp index d2151c8..509db2f 100644 --- a/alee-standalone.cpp +++ b/alee-standalone.cpp @@ -90,13 +90,8 @@ void user_sys(State& state) state.dict.read(Dictionary::Base)); std::cout << buf << ' '; break; - case 1: // u. - { - Addr ucell = static_cast<Addr>(state.pop()); - std::to_chars(buf, buf + sizeof(buf), ucell, - state.dict.read(Dictionary::Base)); - std::cout << buf << ' '; - } + case 1: // unused + state.push(static_cast<Addr>(state.dict.capacity() - state.dict.here())); break; case 2: // emit std::cout << static_cast<char>(state.pop()); |