From 415abbabff87f88b632a0ac63c9cf42b98712133 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sat, 13 Oct 1990 16:16:05 +0000
Subject: [PATCH] Moved the lisp heap to the same 256meg chunk of memory as the
 C text segment so we can use jump-absolute.

---
 compiler/mips/parms.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp
index 60cb3e5dc..3bb35bcfa 100644
--- a/compiler/mips/parms.lisp
+++ b/compiler/mips/parms.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.75 1990/10/13 04:55:13 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.76 1990/10/13 16:16:05 wlott Exp $
 ;;;
 ;;;    This file contains some parameterizations of various VM
 ;;; attributes for the MIPS.  This file is separate from other stuff so 
@@ -99,9 +99,9 @@
 
 ;;; Where to put the different spaces.
 ;;; 
-(defparameter target-read-only-space-start #x20000000)
-(defparameter target-static-space-start #x30000000)
-(defparameter target-dynamic-space-start #x40000000)
+(defparameter target-read-only-space-start #x01000000)
+(defparameter target-static-space-start    #x04000000)
+(defparameter target-dynamic-space-start   #x06000000)
 
 
 ;;;; Type definitions:
-- 
GitLab