summaryrefslogtreecommitdiff
path: root/sys/arch/luna88k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-12-03 18:20:52 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-12-03 18:20:52 +0000
commitb547537998634b132aa40806ac940e899f44c61b (patch)
treec4fa142eae5d0d208814a87c874d5b13c5e00674 /sys/arch/luna88k
parentd9f5d8eda4808a18676489c7776c35780a6e1549 (diff)
intstack does not need to be visible from C code anymore.
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r--sys/arch/luna88k/luna88k/locore.S16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/luna88k/luna88k/locore.S b/sys/arch/luna88k/luna88k/locore.S
index 73bb31395ed..4b4cf2a2dfd 100644
--- a/sys/arch/luna88k/luna88k/locore.S
+++ b/sys/arch/luna88k/luna88k/locore.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore.S,v 1.10 2005/12/03 14:30:05 miod Exp $ */
+/* $OpenBSD: locore.S,v 1.11 2005/12/03 18:20:48 miod Exp $ */
/*
* Copyright (c) 1998 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -398,16 +398,16 @@ GLOBAL(delay)
/*****************************************************************************/
data
- .align NBPG
+ .align PAGE_SIZE
GLOBAL(kernel_sdt) /* SDT (segment descriptor table */
space 0x2000 /* 8K - 4K phys, 4K virt*/
- .align NBPG
-GLOBAL(intstack)
+ .align PAGE_SIZE
+ASGLOBAL(intstack)
space USIZE
ASGLOBAL(intstack_end)
ASGLOBAL(slavestack)
- space NBPG /* 4K, small, interim stack */
+ space PAGE_SIZE /* 4K, small, interim stack */
ASGLOBAL(slavestack_end)
/*
@@ -419,7 +419,7 @@ ASGLOBAL(slavestack_end)
* we feel like doing that).
* Should be page aligned.
*/
- .align NBPG
+ .align PAGE_SIZE
GLOBAL(idle_u)
space USIZE
@@ -428,9 +428,9 @@ GLOBAL(idle_u)
*
* This must be page aligned
*/
- .align NBPG
+ .align PAGE_SIZE
ASLOCAL(u0)
- space UPAGES * NBPG
+ space USIZE
GLOBAL(proc0paddr)
word _ASM_LABEL(u0) /* KVA of proc0 uarea */