cl-chip8.asd @ 9f22ed821ddd

Fix the stupid tetris input bug

Apparently ADD Reg, Imm doesn't set the carry flag like all the
other ADD/SUB instructions.
author Steve Losh <steve@stevelosh.com>
date Thu, 15 Dec 2016 19:45:03 -0500
parents 16ee9cf6d798
children 2e803dec5d58 ee000116796f
(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
               )

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