diff options
author | bd <bdunahu@operationnull.com> | 2025-04-10 03:53:43 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-10 03:53:43 -0400 |
commit | df508744ec2975cec0ba05e8a4358c1c41265c4c (patch) | |
tree | ce8ee03b9d25b739a2e687c69b14d9221420e4fa /src/package.lisp | |
parent | 41baa17a9855bc970becf3dab02f7014753b45db (diff) |
Add untested (but works on the single input file) code emission
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/package.lisp b/src/package.lisp index 115942e..bbb45a3 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -13,12 +13,15 @@ #:add-label #:get-variable #:get-label - #:label-table #:r-type #:i-type - #:j-type - #:mnemonic-loc)) + #:j-type)) (defpackage #:parse (:use #:cl) - (:export #:str->ast)) + (:export #:str->ast + #:line-number)) + +(defpackage #:emit + (:use #:cl) + (:export #:emit)) |