More work. Things appear on the screen now.
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 17 Nov 2016 15:50:38 +0000 |
parents |
5cfbf08cb54d |
children |
a316b453595a |
(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 "gui")))))