vendor/quickutils-package.lisp @ 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 d7119e2cc512
children (none)
(eval-when (:compile-toplevel :load-toplevel :execute)
  (unless (find-package "CHIP8.QUICKUTILS")
    (defpackage "CHIP8.QUICKUTILS"
      (:documentation "Package that contains Quickutil utility functions.")
      (:use :cl))))

(in-package "CHIP8.QUICKUTILS")

;; need to define this here so sbcl will shut the hell up about it being
;; undefined when compiling quickutils.lisp.  computers are trash.
(defparameter *utilities* nil)