chipgr8-archive/chipgr8.asd
Juhani Krekelä faea86bc8c First commit
Status of the project as it was on 2025-03-07. The commit date is based
on the modification time of the files.
2025-03-07 23:56:06 +02:00

13 lines
362 B
Common Lisp

;;;; chipgr8.asd
(asdf:defsystem #:chipgr8
:description "CHIP-8 emulator"
:author "Juhani Haverinen <juhani.haverinen@gmail.com>"
:license "Unlicense"
:depends-on (#:lispbuilder-sdl)
:serial t
:components ((:file "package")
(:file "chipgr8")
(:file "emulator")
(:file "graphics")
(:file "sdl")))