summaryrefslogtreecommitdiff
path: root/sys/src/9
diff options
context:
space:
mode:
authoradventuresin9 <adventuresin9@gmail.com>2023-03-07 15:47:11 +0000
committeradventuresin9 <adventuresin9@gmail.com>2023-03-07 15:47:11 +0000
commit6fe654f50c536a61c94a43ce2fcb147625da1d09 (patch)
tree541263e3ea2b02966075fcbb44448280120df552 /sys/src/9
parente83e2c31c72025f06ea2452818b526c1dab08b91 (diff)
sys/src/9/port/sysproc.c: add spim magic
Diffstat (limited to 'sys/src/9')
-rw-r--r--sys/src/9/port/sysproc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/src/9/port/sysproc.c b/sys/src/9/port/sysproc.c
index 52c1acf6f..2508b227a 100644
--- a/sys/src/9/port/sysproc.c
+++ b/sys/src/9/port/sysproc.c
@@ -358,6 +358,7 @@ sysexec(va_list list)
case S_MAGIC: /* 2MB segment alignment for amd64 */
align = 0x1fffff;
break;
+ case P_MAGIC: /* 16K segment alignment for spim */
case V_MAGIC: /* 16K segment alignment for mips */
align = 0x3fff;
break;