diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-03-17 13:40:12 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-03-17 13:40:12 +0000 |
commit | a8ee89c442b2b6f3bb386cb91ace0a8681153c20 (patch) | |
tree | 744b3a419cd62a337bfdce050e090edb153dba5d /os | |
parent | b5c5c18ba4c0040a511782df3e3e9dbea99ad351 (diff) | |
download | ChibiOS-a8ee89c442b2b6f3bb386cb91ace0a8681153c20.tar.gz ChibiOS-a8ee89c442b2b6f3bb386cb91ace0a8681153c20.tar.bz2 ChibiOS-a8ee89c442b2b6f3bb386cb91ace0a8681153c20.zip |
Fixed a couple regressions after asm code rework.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10124 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/common/ports/e200/compilers/GCC/ivor.S | 2 | ||||
-rw-r--r-- | os/common/startup/e200/devices/SPC56ECxx/boot.S | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/os/common/ports/e200/compilers/GCC/ivor.S b/os/common/ports/e200/compilers/GCC/ivor.S index f498cff77..7ad2a43c1 100644 --- a/os/common/ports/e200/compilers/GCC/ivor.S +++ b/os/common/ports/e200/compilers/GCC/ivor.S @@ -214,7 +214,7 @@ _ivor_exit: e_bl _dbg_check_lock
#endif
e_bl chSchIsPreemptionRequired
- se_cmpl r3, 0
+ se_cmpi r3, 0
se_beq .noresch
e_bl chSchDoReschedule
.noresch:
diff --git a/os/common/startup/e200/devices/SPC56ECxx/boot.S b/os/common/startup/e200/devices/SPC56ECxx/boot.S index c47300a44..fc8c663dc 100644 --- a/os/common/startup/e200/devices/SPC56ECxx/boot.S +++ b/os/common/startup/e200/devices/SPC56ECxx/boot.S @@ -26,6 +26,7 @@ #if defined(__HIGHTEC__)
#define se_bge bge
+#define se_bne bne
#endif
#if !defined(__DOXYGEN__)
|