Define KERNEL_TEXT_BASE, ALT_PAGE_TBLS_BASE, and KERNEL_VM_BASE

in terms of KERNEL_BASE.
This commit is contained in:
thorpej 2001-11-11 00:32:02 +00:00
parent 82540eeaca
commit ddb435fb56

View File

@ -1,4 +1,4 @@
/* $NetBSD: vmparam.h,v 1.23 2001/08/11 13:20:20 chris Exp $ */
/* $NetBSD: vmparam.h,v 1.24 2001/11/11 00:32:02 thorpej Exp $ */
/*
* Copyright (c) 1988 The Regents of the University of California.
@ -96,9 +96,9 @@
/* Various constants used by the MD code*/
#define KERNEL_BASE 0xf0000000
#define KERNEL_TEXT_BASE KERNEL_BASE
#define ALT_PAGE_TBLS_BASE 0xf0c00000
#define KERNEL_VM_BASE 0xf1000000
#define KERNEL_TEXT_BASE (KERNEL_BASE + 0x00000000)
#define ALT_PAGE_TBLS_BASE (KERNEL_BASE + 0x00c00000)
#define KERNEL_VM_BASE (KERNEL_BASE + 0x01000000)
/*
* The Kernel VM Size varies depending on the machine depending on how
* much space is needed (and where) for other mappings.