Define KERNEL_TEXT_BASE, APTE_BASE, and KERNEL_VM_BASE in terms

of KERNEL_BASE.
This commit is contained in:
thorpej 2002-03-23 02:28:42 +00:00
parent 0ba36d6f6f
commit e5acae884b

View File

@ -1,4 +1,4 @@
/* $NetBSD: vmparam.h,v 1.7 2002/03/23 02:22:56 thorpej Exp $ */ /* $NetBSD: vmparam.h,v 1.8 2002/03/23 02:28:42 thorpej Exp $ */
/* /*
* Copyright (c) 1988 The Regents of the University of California. * Copyright (c) 1988 The Regents of the University of California.
@ -52,9 +52,9 @@
/* Various constants used by the MD code*/ /* Various constants used by the MD code*/
#define KERNEL_BASE 0xf0000000 #define KERNEL_BASE 0xf0000000
#define KERNEL_TEXT_BASE KERNEL_BASE #define KERNEL_TEXT_BASE (KERNEL_BASE + 0x00000000)
#define APTE_BASE 0xf0c00000 #define APTE_BASE (KERNEL_BASE + 0x00c00000)
#define KERNEL_VM_BASE 0xf1000000 #define KERNEL_VM_BASE (KERNEL_BASE + 0x01000000)
/* /*
* The Kernel VM Size varies depending on the machine depending on how * The Kernel VM Size varies depending on the machine depending on how
* much space is needed (and where) for other mappings. * much space is needed (and where) for other mappings.