summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/efi332/start/start.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/efi332/start/start.c')
-rw-r--r--c/src/lib/libbsp/m68k/efi332/start/start.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/c/src/lib/libbsp/m68k/efi332/start/start.c b/c/src/lib/libbsp/m68k/efi332/start/start.c
index 03e98b8195..97e305d243 100644
--- a/c/src/lib/libbsp/m68k/efi332/start/start.c
+++ b/c/src/lib/libbsp/m68k/efi332/start/start.c
@@ -24,16 +24,16 @@ void dumby_start() {
/* We need to by-pass the link instruction since the RAM chip-
select pins are not yet configured. */
- asm volatile ( ".global start ;
+ asm volatile ( ".global start ;\n\
start:");
/* disable interrupts, load stack pointer */
- asm volatile ( "oriw #0x0700, %sr;
- moveal #M68Kvec, %a0;
- movec %a0, %vbr;
- movel #end, %d0;
- addl " STACK_SIZE ",%d0;
- movel %d0,%sp;
+ asm volatile ( "oriw #0x0700, %sr;\n\
+ moveal #M68Kvec, %a0;\n\
+ movec %a0, %vbr;\n\
+ movel #end, %d0;\n\
+ addl " STACK_SIZE ",%d0;\n\
+ movel %d0,%sp;\n\
movel %d0,%a6"
);