From e5acae884b2ac5bb13b97a91a6223cb0b4e5d254 Mon Sep 17 00:00:00 2001 From: thorpej Date: Sat, 23 Mar 2002 02:28:42 +0000 Subject: [PATCH] Define KERNEL_TEXT_BASE, APTE_BASE, and KERNEL_VM_BASE in terms of KERNEL_BASE. --- sys/arch/acorn32/include/vmparam.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/acorn32/include/vmparam.h b/sys/arch/acorn32/include/vmparam.h index 8bd20bc53eab..5757e81cea08 100644 --- a/sys/arch/acorn32/include/vmparam.h +++ b/sys/arch/acorn32/include/vmparam.h @@ -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. @@ -52,9 +52,9 @@ /* Various constants used by the MD code*/ #define KERNEL_BASE 0xf0000000 -#define KERNEL_TEXT_BASE KERNEL_BASE -#define APTE_BASE 0xf0c00000 -#define KERNEL_VM_BASE 0xf1000000 +#define KERNEL_TEXT_BASE (KERNEL_BASE + 0x00000000) +#define APTE_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.