about summary refs log tree commit diff stats
path: root/cpp/070display.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/070display.cc')
-rw-r--r--cpp/070display.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/cpp/070display.cc b/cpp/070display.cc
index 350b9c4d..aa2c31b8 100644
--- a/cpp/070display.cc
+++ b/cpp/070display.cc
@@ -1,5 +1,9 @@
 //: Take charge of the text-mode display and keyboard.
 
+// uncomment to debug console programs
+:(before "End Globals")
+//? ofstream LOG("log.txt");
+
 //:: Display management
 
 :(before "End Globals")
@@ -166,13 +170,18 @@ WAIT_FOR_KEY_FROM_KEYBOARD,
 Recipe_number["wait-for-key-from-keyboard"] = WAIT_FOR_KEY_FROM_KEYBOARD;
 :(before "End Primitive Recipe Implementations")
 case WAIT_FOR_KEY_FROM_KEYBOARD: {
+//? LOG << "AAA\n";  LOG.flush();
   struct tb_event event;
   do {
     tb_poll_event(&event);
   } while (event.type != TB_EVENT_KEY);
+//? LOG << "AAA 2\n";  LOG.flush();
   vector<long long int> result;
   result.push_back(event.ch);
-  write_memory(current_instruction().products[0], result);
+//? LOG << "AAA 3\n";  LOG.flush();
+  if (!current_instruction().products.empty())
+    write_memory(current_instruction().products[0], result);
+//? LOG << "AAA 9\n";  LOG.flush();
   break;
 }