diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-10 14:57:41 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-10 14:57:41 +0000 |
commit | 6ed1607bcbc481444e8aaff5a06e771bdaa4f21e (patch) | |
tree | b0eeda895d8981011039d7afe700e43d5382959d /ports | |
parent | ea60d55415892ca1a98c735d95c310637b835bf3 (diff) | |
download | ChibiOS-6ed1607bcbc481444e8aaff5a06e771bdaa4f21e.tar.gz ChibiOS-6ed1607bcbc481444e8aaff5a06e771bdaa4f21e.tar.bz2 ChibiOS-6ed1607bcbc481444e8aaff5a06e771bdaa4f21e.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@607 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7/crt0.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/ARM7/crt0.s b/ports/ARM7/crt0.s index 56e3bc6e3..f575de985 100644 --- a/ports/ARM7/crt0.s +++ b/ports/ARM7/crt0.s @@ -123,7 +123,7 @@ bssloop: mov r0, #0
mov r1, r0
bl main
- bl chSysHalt
+ bl sys_halt
#else
add r0, pc, #1
bx r0
@@ -132,7 +132,7 @@ bssloop: mov r0, #0
mov r1, r0
bl main
- bl chSysHalt
+ bl sys_halt
.code 32
#endif
@@ -177,7 +177,7 @@ FiqHandler: .thumb_func
hwinit0:
bx lr
-
+
/*
* Default late initialization code. It is declared weak in order to be
* replaced by the real initialization code.
|