about summary refs log tree commit diff stats
path: root/subx/010core.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/010core.cc')
-rw-r--r--subx/010core.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/subx/010core.cc b/subx/010core.cc
index 1dc9f16f..3b987ffb 100644
--- a/subx/010core.cc
+++ b/subx/010core.cc
@@ -111,6 +111,7 @@ void run(string text_bytes) {
 void run_one_instruction() {
   uint8_t op=0, op2=0, op3=0;
   trace(2, "run") << "inst: 0x" << HEXWORD << EIP << end();
+//?   cerr << "inst: 0x" << EIP << '\n';
   switch (op = next()) {
   case 0xf4:  // hlt
     EIP = End_of_program;