aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/alee.cpp b/alee.cpp
index d8a0cc8..6c2c135 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -65,6 +65,27 @@ int main(int argc, char *argv[])
return 0;
}
+static void save(State& state)
+{
+ std::ofstream file ("alee.dat", std::ios::binary);
+
+ if (file.good()) {
+ for (Addr i = 0; i < state.dict.here; ++i)
+ file.put(state.dict.readbyte(i));
+ }
+}
+
+static void load(State& state)
+{
+ std::ifstream file ("alee.dat", std::ios::binary);
+
+ Addr i = 0;
+ while (file.good())
+ state.dict.writebyte(i++, file.get());
+
+ state.dict.here = i - 1;
+}
+
void user_sys(State& state)
{
switch (state.pop()) {
@@ -74,6 +95,12 @@ void user_sys(State& state)
case 1:
std::cout << static_cast<char>(state.pop());
break;
+ case 2:
+ save(state);
+ break;
+ case 3:
+ load(state);
+ break;
}
}