Skip to content
Snippets Groups Projects
Commit fe11ebf9 authored by wlott's avatar wlott
Browse files

Moved the heap around to free up 0x0f000000...0x0fffffff, cause Mach 3.0

wants to use that range.
parent 0a594871
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
/* $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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment