aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/alee.cpp b/alee.cpp
index be71730..b38f8a0 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -28,10 +28,23 @@ static bool okay = false;
static void parseLine(Parser&, State&, std::string_view);
static void parseFile(Parser&, State&, std::istream&);
+static void readchar(State& state)
+{
+ auto len = state.dict.read(Dictionary::Input);
+ Addr addr = Dictionary::Input + sizeof(Cell) +
+ Dictionary::InputCells - len - 1;
+
+ for (Addr i = 0; i < len; ++i, ++addr)
+ state.dict.writebyte(addr, state.dict.readbyte(addr + 1));
+
+ state.dict.writebyte(addr, std::cin.get());
+ state.dict.write(Dictionary::Input, len + 1);
+}
+
int main(int argc, char *argv[])
{
MemDict dict;
- State state (dict);
+ State state (dict, readchar);
Parser parser;
std::vector args (argv + 1, argv + argc);
@@ -41,7 +54,6 @@ int main(int argc, char *argv[])
}
okay = true;
- //std::cout << state.size() << ' ' << state.compiling << "> ";
parseFile(parser, state, std::cin);
return 0;