summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/efi332/start/start.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-11-01 23:09:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-11-01 23:09:05 +0000
commita8d0dbd30532c3c341f468fe2b03034b82b9b793 (patch)
tree007d0b709954f19ecadcf26662cf59baaa8d95cd /c/src/lib/libbsp/m68k/efi332/start/start.c
parent2002-11-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-a8d0dbd30532c3c341f468fe2b03034b82b9b793.tar.bz2
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* console/console.c, start/start.c: Removed warnings.
Diffstat (limited to '')
-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"
);