Change kernel segment base to 0xf00000. Some PM9500s won't boot with the
old value (0xfffff0). XXX I don't know why...
This commit is contained in:
parent
bc7211f403
commit
956c00aaf3
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: param.h,v 1.5 1999/07/18 17:53:18 tsubai Exp $ */
|
||||
/* $NetBSD: param.h,v 1.6 1999/10/13 04:01:06 tsubai Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define USER_SR 13
|
||||
#define KERNEL_SR 14
|
||||
#define KERNEL_SEGMENT (0xfffff0 + KERNEL_SR)
|
||||
#define KERNEL_SEGMENT (0xf00000 + KERNEL_SR)
|
||||
#define EMPTY_SEGMENT 0xfffff0
|
||||
#define USER_ADDR ((void *)(USER_SR << ADDR_SR_SHFT))
|
||||
|
||||
|
|
Loading…
Reference in New Issue