diff options
Diffstat (limited to 'mu.arc')
-rw-r--r-- | mu.arc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mu.arc b/mu.arc index 8bb498de..3499bb49 100644 --- a/mu.arc +++ b/mu.arc @@ -1,5 +1,10 @@ ; things that a future assembler will need separate memory for: ; code; types; args channel +(= initialization-fns* (queue)) +(def reset () + (each f (as cons initialization-fns*) + (f))) + (def clear () (= types* (obj type (obj size 1 record nil array nil address nil) @@ -11,7 +16,7 @@ )) (= memory* (table)) (= function* (table))) -(clear) +(enq clear initialization-fns*) (def add-fns (fns) (each (name . body) fns |