diff --git a/compiler/old-rt/parms.lisp b/compiler/old-rt/parms.lisp
index 89d1ccd53c2a3aabfe9f053d946d42be1e183e01..3e8da5138f23c196b64e98f6b3988ee663c38206 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)