aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/PPC/crt0.s
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-12-21 10:30:39 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-12-21 10:30:39 +0000
commitf2386f6a22c55842203278c5b1f9691c5ac5f8fd (patch)
treeb7f318640fa8ff688925eab4fe544d41f3dd019a /os/ports/GCC/PPC/crt0.s
parent25d2722b09c5ed808fbb5b09bafc94f253da2479 (diff)
downloadChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.tar.gz
ChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.tar.bz2
ChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2515 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/PPC/crt0.s')
-rw-r--r--os/ports/GCC/PPC/crt0.s10
1 files changed, 4 insertions, 6 deletions
diff --git a/os/ports/GCC/PPC/crt0.s b/os/ports/GCC/PPC/crt0.s
index c40f5efb2..0a2697be8 100644
--- a/os/ports/GCC/PPC/crt0.s
+++ b/os/ports/GCC/PPC/crt0.s
@@ -89,17 +89,15 @@ _boot_address:
/*
* Main program invocation.
*/
- li %r3, 0
- li %r4, 0
bl main
- b main_exit
+ b _main_exit_handler
/*
* Default main exit code, infinite loop.
*/
- .weak main_exit
- .globl main_exit
-main_exit:
+ .weak _main_exit_handler
+ .globl _main_exit_handler
+_main_exit_handler:
forever:
b forever