about summary refs log tree commit diff stats
path: root/mu.arc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-07-06 18:49:53 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-07-06 18:49:53 -0700
commitf4a6518ef7121d6e5009a0e344ddc29e2ef2490e (patch)
tree0a2b2b529a4a4be58e2a16a75ed4741a2cce5984 /mu.arc
parent40f0a658f0b24f7231886ac61758f42e4b088742 (diff)
downloadmu-f4a6518ef7121d6e5009a0e344ddc29e2ef2490e.tar.gz
8
Diffstat (limited to 'mu.arc')
-rw-r--r--mu.arc6
1 files changed, 4 insertions, 2 deletions
diff --git a/mu.arc b/mu.arc
index 1618c134..1738e8b9 100644
--- a/mu.arc
+++ b/mu.arc
@@ -1,3 +1,5 @@
+; things that a future assembler will need separate memory for:
+;   code; types; args channel
 (def clear ()
   (= types* (table))
   (= memory* (table))
@@ -43,8 +45,8 @@
 
 (awhen cdr.argv
   (each file it
-  ;?   (prn file)
+;?     (prn file)
     (add-fns readfile.file))
-  ;? (prn function*)
+;?   (prn function*)
   (run function*!main)
   (prn memory*))