From fe11ebf9f1e3dfd0302ef3b9870b2875f8869318 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Wed, 18 Sep 1991 06:38:47 +0000
Subject: [PATCH] Moved the heap around to free up 0x0f000000...0x0fffffff,
 cause Mach 3.0 wants to use that range.

---
 compiler/mips/parms.lisp |  8 ++++----
 ldb/validate.h           | 12 ++++++------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp
index 62b50d7c6..0c46a7b69 100644
--- a/compiler/mips/parms.lisp
+++ b/compiler/mips/parms.lisp
@@ -7,11 +7,11 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.97 1991/05/24 20:38:19 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.98 1991/09/18 06:38:47 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.97 1991/05/24 20:38:19 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.98 1991/09/18 06:38:47 wlott Exp $
 ;;;
 ;;;    This file contains some parameterizations of various VM
 ;;; attributes for the MIPS.  This file is separate from other stuff so 
@@ -117,8 +117,8 @@
 ;;; Where to put the different spaces.
 ;;; 
 (defparameter target-read-only-space-start #x01000000)
-(defparameter target-static-space-start    #x04000000)
-(defparameter target-dynamic-space-start   #x06000000)
+(defparameter target-static-space-start    #x05000000)
+(defparameter target-dynamic-space-start   #x07000000)
 
 
 
diff --git a/ldb/validate.h b/ldb/validate.h
index a9ac38162..323475f64 100644
--- a/ldb/validate.h
+++ b/ldb/validate.h
@@ -1,22 +1,22 @@
-/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/validate.h,v 1.7 1991/03/15 03:19:10 wlott Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/validate.h,v 1.8 1991/09/18 06:37:47 wlott Exp $ */
 
 #if !defined(_INCLUDE_VALIDATE_H_)
 #define _INCLUDE_VALIDATE_H_
 
 #ifdef ibmrt
 #define READ_ONLY_SPACE_START	(0x00100000)
-#define READ_ONLY_SPACE_SIZE    (0x03F00000)
+#define READ_ONLY_SPACE_SIZE    (0x04F00000)
 #else
 #define READ_ONLY_SPACE_START   (0x01000000)
-#define READ_ONLY_SPACE_SIZE    (0x03000000)
+#define READ_ONLY_SPACE_SIZE    (0x04000000)
 #endif
 
-#define STATIC_SPACE_START	(0x04000000)
+#define STATIC_SPACE_START	(0x05000000)
 #define STATIC_SPACE_SIZE	(0x02000000)
 
-#define DYNAMIC_0_SPACE_START	(0x06000000)
+#define DYNAMIC_0_SPACE_START	(0x07000000)
 #define DYNAMIC_1_SPACE_START	(0x0b000000)
-#define DYNAMIC_SPACE_SIZE	(0x05000000)
+#define DYNAMIC_SPACE_SIZE	(0x04000000)
 
 #ifdef sparc
 #define CONTROL_STACK_START	(0x00e00000)
-- 
GitLab