diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-05-10 22:46:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-05-10 22:46:53 +0000 |
commit | 38bf752f89e0ad59c9adef04a0340e68b849798a (patch) | |
tree | 62d9767146e227a478f7d62b482678b170a604f1 /sys/arch/mac68k/include | |
parent | 39bda50ec30c753fd95402c4f12632e9bf2f1195 (diff) |
Provide PAGE_{MASK,SHIFT,SIZE} constants.
Diffstat (limited to 'sys/arch/mac68k/include')
-rw-r--r-- | sys/arch/mac68k/include/param.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/mac68k/include/param.h b/sys/arch/mac68k/include/param.h index 9fc0fa2bbe9..ff3cbb65b5e 100644 --- a/sys/arch/mac68k/include/param.h +++ b/sys/arch/mac68k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.11 2001/05/05 20:56:40 art Exp $ */ +/* $OpenBSD: param.h,v 1.12 2001/05/10 22:46:35 miod Exp $ */ /* $NetBSD: param.h,v 1.28 1997/03/01 06:57:45 scottr Exp $ */ /* @@ -91,6 +91,11 @@ #define MACHINE "mac68k" #define PGSHIFT 12 /* LOG2(NBPG) */ + +#define PAGE_SHIFT 12 +#define PAGE_SIZE (1 << PAGE_SHIFT) +#define PAGE_MASK (PAGE_SHIFT - 1) + #define KERNBASE 0x00000000 /* start of kernel virtual */ #define SEGSHIFT 22 /* LOG2(NBSEG) */ |