From 22586c6ff24da2c40ddca8d4e19da16abab89ac1 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 28 Apr 1991 02:33:19 +0000
Subject: [PATCH] Added RT support.

---
 compiler/loadcom.lisp | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/compiler/loadcom.lisp b/compiler/loadcom.lisp
index 4b48dde00..7cdafe093 100644
--- a/compiler/loadcom.lisp
+++ b/compiler/loadcom.lisp
@@ -8,7 +8,9 @@
 
 (load "vm:vm-macs")
 (load "c:backend")
-(load "vm:parms")
+#-rt (load "vm:parms")
+#+rt (load "vm:params")
+(load 
 (load "vm:objdef")
 (load "c:macros")
 (load "c:sset")
@@ -57,8 +59,8 @@
 #+pmax (load "code:pmax-disassem")
 #+pmax (load "vm:mips-insts")
 #+pmax (load "vm:mips-macs")
-#+sparc (load "vm:insts")
-#+sparc (load "vm:macros")
+#-pmax (load "vm:insts")
+#-pmax (load "vm:macros")
 (load "vm:utils")
 (load "c:aliencomp")
 (load "c:debug-dump")
@@ -67,7 +69,7 @@
 (load "vm:core")
 
 (load "vm:vm")
-(load "vm:primtype")
+#-rt (load "vm:primtype")
 (load "vm:move")
 (load "vm:sap")
 (load "vm:system")
@@ -91,7 +93,7 @@
 (load "vm:vm-tran")
 
 (load "assem:assem-rtns")
-(load "assem:bit-bash")
+#-rt (load "assem:bit-bash")
 (load "assem:array")
 (load "assem:arith")
 (load "assem:alloc")
-- 
GitLab