aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/sam3x8e/main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sam3x8e/main.c b/src/sam3x8e/main.c
index ca002c91..3cf1b97c 100644
--- a/src/sam3x8e/main.c
+++ b/src/sam3x8e/main.c
@@ -43,8 +43,7 @@ clear_active_irq(void)
// Shutdown did not occur in an irq - nothing to do.
return;
// Clear active irq status
- psr &= ~0x1ff;
- psr |= 1<<24; // T-bit
+ psr = 1<<24; // T-bit
uint32_t temp;
asm volatile(
" push { %1 }\n"
@@ -53,7 +52,7 @@ clear_active_irq(void)
" push { r0, r1, r2, r3, r12, lr }\n"
" bx %2\n"
"1:\n"
- : "=&r"(temp) : "r"(psr), "r"(0xfffffff9));
+ : "=&r"(temp) : "r"(psr), "r"(0xfffffff9) : "cc");
}
DECL_SHUTDOWN(clear_active_irq);