summaryrefslogtreecommitdiff
path: root/sys/src/libmach
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-03-22 17:49:28 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2015-03-22 17:49:28 +0100
commit8caec8564d6221146e055937b6ae344a647c7c82 (patch)
tree2fe394982af83cc2cb80b2c82587bdbf3486811a /sys/src/libmach
parent80658d6ccf522200c286f02e947f3c9d2afe7ea9 (diff)
vl, libmach, kernel: mips has 16K alignment for segments (for bigpages)
Diffstat (limited to 'sys/src/libmach')
-rw-r--r--sys/src/libmach/v.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/src/libmach/v.c b/sys/src/libmach/v.c
index a03799aac..43695e08c 100644
--- a/sys/src/libmach/v.c
+++ b/sys/src/libmach/v.c
@@ -109,9 +109,9 @@ Mach mmips =
"R31", /* name of link register */
"setR30", /* static base register name */
0, /* value */
- 0x1000, /* page size */
- 0xC0000000ULL, /* kernel base */
- 0x40000000ULL, /* kernel text mask */
+ 16*1024, /* page size */
+ 0x80000000ULL, /* kernel base */
+ 0x80000000ULL, /* kernel text mask */
0x7FFFFFFFULL, /* user stack top */
4, /* quantization of pc */
4, /* szaddr */