-
Notifications
You must be signed in to change notification settings - Fork 3
/
patches.lisp
34 lines (22 loc) · 1.02 KB
/
patches.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: (*SIM-I COMMON-LISP-GLOBAL); Base: 10; Patch-File: T -*-
(in-package :*sim-i)
;;;> *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
;;;>
;;;> The Thinking Machines *Lisp Simulator is in the public domain.
;;;> You are free to do whatever you like with it, including but
;;;> not limited to distributing, modifying, and copying.
;;;>
;;;> *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
;;; Author: JP Massar.
(import-then-export '*sim '*sim '(load-patches))
(defun load-patches ()
; (load "C:/Lispcode/Starsim/F20/patches.lisp")
; (load "C:/Lispcode/Starsim/F20/patches.lisp")
; (load "/u/mc/lisp/Lisp/StarLisp/sbcl/patches.lisp")
)
;;; ===========================================================================
;;; *COLD-BOOT the Simulator to its default configuration
;;; to make sure things are working.
(eval-when (:load-toplevel :execute)
(*cold-boot :initial-dimensions '(8 4))
)