We use 4K pages on the mvme68k. Override PAGE_SIZE and friends to
be compile-time constants.
This commit is contained in:
parent
9f60ecd809
commit
ecf0470012
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vmparam.h,v 1.15 2000/07/27 14:48:58 scw Exp $ */
|
||||
/* $NetBSD: vmparam.h,v 1.16 2000/11/14 19:12:58 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -49,6 +49,14 @@
|
|||
* Machine dependent constants for MVME68K
|
||||
*/
|
||||
|
||||
/*
|
||||
* We use 4K pages on the mvme68k. Override the PAGE_* definitions
|
||||
* to be compile-time constants.
|
||||
*/
|
||||
#define PAGE_SHIFT 12
|
||||
#define PAGE_SIZE (1 << PAGE_SHIFT)
|
||||
#define PAGE_MASK (PAGE_SIZE - 1)
|
||||
|
||||
/*
|
||||
* USRTEXT is the start of the user text/data space, while USRSTACK
|
||||
* is the top (end) of the user stack. LOWPAGES and HIGHPAGES are
|
||||
|
|
Loading…
Reference in New Issue