diff options
author | bd <bdunahu@operationnull.com> | 2025-04-10 01:23:38 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-10 01:23:38 -0400 |
commit | 3eeebe73826906b1c598d5e5d207bfee936ed315 (patch) | |
tree | 9b750918dcc606a4a228503201f870249303cc7c /src/main.lisp | |
parent | e50d44464db7eb8e1c20755c862466ac8f7419b0 (diff) |
Messy data section
Diffstat (limited to 'src/main.lisp')
-rw-r--r-- | src/main.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.lisp b/src/main.lisp index be9f69a..9692603 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -38,7 +38,7 @@ _/_/ _/_/ " (error "The file is not an asm source code file.~%")) (t (let ((str (uiop:read-file-string file))) (if str - (progn (pprint (esrap:parse 'parse:text (string-upcase str))) + (progn (pprint (esrap:parse 'parse:str->ast (string-upcase str))) (terpri) (maphash #'(lambda (k v) (format t "~A => ~A~%" k v)) util:label-table) (format t "---~%")) |