14 lines
299 B
Common Lisp
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")))
|