c64-livecoding/wip-duuqnd/user-side-compiler/user-side-compiler.asd

14 lines
299 B
Common Lisp

(cl:in-package #:asdf-user)
(defsystem #:user-side-compiler
:serial t
:components
((:file "package")
(:file "transform")
(:file "reference")
(:file "symbol-table")
(:file "asm-function")
(:file "tokenizer")
(:file "label")
(:file "high-level")
(:file "instruction")))