aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/alee.cpp b/alee.cpp
index 92af969..dfe85d1 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -90,16 +90,7 @@ void user_sys(State& state)
state.dict.read(Dictionary::Base));
std::cout << buf << ' ';
break;
- case 1: // emit
- std::cout << static_cast<char>(state.pop());
- break;
- case 2: // save
- save(state);
- break;
- case 3: // load
- load(state);
- break;
- case 4: // u.
+ case 1: // u.
{
Addr ucell = static_cast<Addr>(state.pop());
std::to_chars(buf, buf + sizeof(buf), ucell,
@@ -107,6 +98,15 @@ void user_sys(State& state)
std::cout << buf << ' ';
}
break;
+ case 2: // emit
+ std::cout << static_cast<char>(state.pop());
+ break;
+ case 3: // save
+ save(state);
+ break;
+ case 4: // load
+ load(state);
+ break;
default:
break;
}