aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/alee.cpp b/alee.cpp
index c7c9ddf..55cae57 100644
--- a/alee.cpp
+++ b/alee.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());