diff options
Diffstat (limited to 'sys/boot/powerpc/loader/start.c')
-rw-r--r-- | sys/boot/powerpc/loader/start.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/boot/powerpc/loader/start.c b/sys/boot/powerpc/loader/start.c index a9aef2a..9f37ce0 100644 --- a/sys/boot/powerpc/loader/start.c +++ b/sys/boot/powerpc/loader/start.c @@ -37,8 +37,6 @@ void startup(void *, int, int (*)(void *), char *, int); -static int stack[8192/4 + 4]; - #ifdef XCOFF_GLUE asm(" .text @@ -48,7 +46,11 @@ _entry: "); #endif -asm(" +__asm(" + .data +stack: + .space 16388 + .text .globl _start _start: |