about summary refs log tree commit diff stats
path: root/subx/010core.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-30 23:28:35 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-30 23:31:39 -0700
commitfc5b5e3704c43f55ac19646e51d78d1b8141850b (patch)
tree4f39d257d1463a0e9a3da2e80a3930fa1306caae /subx/010core.cc
parent1a3d4e2c73e86e6a905de60b1b80576e3d9f81c4 (diff)
downloadmu-fc5b5e3704c43f55ac19646e51d78d1b8141850b.tar.gz
4302 - a more elaborate pass-through phase
Starting to work out the skeleton every phase needs to have.
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 f391a369..f8dcdf20 100644
--- a/subx/010core.cc
+++ b/subx/010core.cc
@@ -100,6 +100,7 @@ End_of_program = 0;
 // of its bytes, and run it
 void run(string text_bytes) {
   // Begin run() For Scenarios
+  cerr << text_bytes << '\n';
   load_program(text_bytes, 1);  // tests always assume a starting address of 1
   EIP = 1;  // preserve null pointer
   while (EIP < End_of_program)