From 6ce1ef9d390c151c4100ea9d6b2d56526dc97526 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 16 Apr 1990 10:58:18 +0000 Subject: [PATCH] Merged non-descriptor changes: Increased SC-NUMBER-LIMIT. --- compiler/old-rt/parms.lisp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/compiler/old-rt/parms.lisp b/compiler/old-rt/parms.lisp index 89d1ccd53..3e8da5138 100644 --- a/compiler/old-rt/parms.lisp +++ b/compiler/old-rt/parms.lisp @@ -19,7 +19,7 @@ ;;; Maximum number of SCs allowed. ;;; -(defconstant sc-number-limit 15) +(defconstant sc-number-limit 32) ;;; The inclusive upper bound on a cost. We want to write cost frobbing ;;; code so that it is portable, but works on fixnums. This constant should be @@ -60,6 +60,15 @@ (defparameter vm-version "IBM RT PC/Mach 0.0") +;;; The byte ordering of the target implementation. +;;; +(defparameter target-byte-order :big-endian) + +;;; +;;; The native byte ordering (should come from somewhere else once +;;; bootstrapped.) +(defconstant native-byte-order :big-endian) + ;;; The byte ordering of the target implementation. ;;; (defparameter target-byte-order :big-endian) -- GitLab