diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-01-08 16:45:56 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-01-08 16:45:56 +0000 |
commit | 52c033d27e37a0726604a7e4f69f6d1469a9d25f (patch) | |
tree | aea0beaf4c9d094dd2cbba90c9d3f2db0c8c2dc1 /os/ports/IAR | |
parent | 55173b29da939690453db807764de31bb9e667a8 (diff) | |
download | ChibiOS-52c033d27e37a0726604a7e4f69f6d1469a9d25f.tar.gz ChibiOS-52c033d27e37a0726604a7e4f69f6d1469a9d25f.tar.bz2 ChibiOS-52c033d27e37a0726604a7e4f69f6d1469a9d25f.zip |
Cortex-M0 RCTV port.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2619 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/IAR')
-rw-r--r-- | os/ports/IAR/ARMCMx/chcoreasm_v6m.s | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/ports/IAR/ARMCMx/chcoreasm_v6m.s b/os/ports/IAR/ARMCMx/chcoreasm_v6m.s index 5f0887960..07d89e6b5 100644 --- a/os/ports/IAR/ARMCMx/chcoreasm_v6m.s +++ b/os/ports/IAR/ARMCMx/chcoreasm_v6m.s @@ -111,20 +111,20 @@ _port_irq_epilogue: subs r3, r3, #1
str r3, [r2]
cmp r3, #0
- beq .L34
+ beq skipexit
+notrequired
cpsie i
pop {r4, pc}
-.L34:
+skipexit
bl chSchIsRescRequiredExI
cmp r0, #0
- beq .L31
+ beq notrequired
mrs r1, PSP
ldr r2, =_port_saved_pc
ldr r3, [r1, #24]
str r3, [r2]
ldr r3, =_port_switch_from_isr
str r3, [r1, #24]
-.L31:
pop {r4, pc}
END
|