c64-livecoding/wip-duuqnd/user-side-compiler/user-side-compiler.asd
John Lorentzson 5d0f4b4767 Move definition of REFERENCE classes to its own file
Dereferencing is still defined in high-level.lisp, this might change
in the future since I'm sort of restructuring a little bit.
2025-05-16 21:00:14 +02:00

12 lines
247 B
Common Lisp

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