aboutsummaryrefslogtreecommitdiff
path: root/Driver.icl
diff options
context:
space:
mode:
Diffstat (limited to 'Driver.icl')
-rw-r--r--Driver.icl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Driver.icl b/Driver.icl
index 633d248..aa89ae1 100644
--- a/Driver.icl
+++ b/Driver.icl
@@ -1,6 +1,6 @@
implementation module ABC.Driver
-import StdEnv
+import StdEnv, StdDebug
import ABC.Machine
@@ -18,6 +18,7 @@ boot (prog,descs)
fetch_cycle :: State -> State
fetch_cycle st=:{pc,program}
+//# pc = trace_n pc pc
| pc_end pc = st
| otherwise = fetch_cycle (currinstr {st & pc=pc`})
where