WELL DO IT LIVE
author |
Steve Losh <steve@stevelosh.com> |
date |
Fri, 18 Nov 2016 00:56:05 +0000 |
parents |
a316b453595a |
children |
ad512d2a802f |
(asdf:defsystem :cl-chip8
:name "chip8"
:description "Simple Chip-8 emulator."
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT/X11"
:version "1.0.0"
:depends-on (:iterate
:losh
:cl-arrows
:bordeaux-threads
:qtools
:qtcore
:qtgui
:qtopengl
:cl-opengl)
:serial t
:components ((:module "vendor" :serial t
:components ((:file "quickutils-package")
(:file "quickutils")))
(:file "package")
(:module "src" :serial t
:components ((:file "emulator")
(:file "debugger")
(:file "gui")))))