chipgr8-archive/chipgr8.lisp
Juhani Krekelä faea86bc8c First commit
Status of the project as it was on 2025-03-07. The commit date is based
on the modification time of the files.
2025-03-07 23:56:06 +02:00

9 lines
184 B
Common Lisp

(in-package :chipgr8)
(defun run ()
(initialize-emulator)
(graphics-mainloop))
(defun loadprog (prog)
(dotimes (i (length prog))
(setf (aref *memory* (+ 512 i)) (nth prog i))))