cl-chip8.asd @ 2e803dec5d58 crazy-dsl

Attempt at a crazy DSL thing for opcodes.
author Steve Losh <steve@stevelosh.com>
date Thu, 24 Nov 2016 12:45:02 +0000
parents 16ee9cf6d798
children (none)
(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 (
               :bordeaux-threads
               :cl-arrows
               :cl-opengl
               :cl-portaudio
               :iterate
               :losh
               :qtcore
               :qtgui
               :qtools
               :qtopengl
               :trivia
               )

  :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")))))