summaryrefslogtreecommitdiff
path: root/src/package.lisp
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-10 20:28:34 -0400
committerbd <bdunahu@operationnull.com>2025-04-10 20:28:34 -0400
commitc1507d153161413e4958362d19ae9aa9abedee47 (patch)
tree23c6f4538c1b385cb1e6f97d197b8afa18a45619 /src/package.lisp
parentdf508744ec2975cec0ba05e8a4358c1c41265c4c (diff)
Add write raw bytes stage
Diffstat (limited to 'src/package.lisp')
-rw-r--r--src/package.lisp27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/package.lisp b/src/package.lisp
index bbb45a3..d016501 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -6,22 +6,25 @@
(:use #:cl)
(:export #:asm-extension?
#:format-as-binary
- #:insert-in-middle
- #:iota
- #:riffle
- #:add-variable
- #:add-label
- #:get-variable
- #:get-label
- #:r-type
- #:i-type
- #:j-type))
+ #:generate-file-name
+ #:word-to-bytes
+ #:insert-in-middle
+ #:iota
+ #:riffle
+ #:add-variable
+ #:add-label
+ #:get-variable
+ #:get-label
+ #:r-type
+ #:i-type
+ #:j-type))
(defpackage #:parse
(:use #:cl)
(:export #:str->ast
- #:line-number))
+ #:line-number))
(defpackage #:emit
(:use #:cl)
- (:export #:emit))
+ (:export #:emit
+ #:ast->str))