You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aarch32-rt/src/arch_v4/interrupt.rs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ core::arch::global_asm!(
14
14
//
15
15
// See https://developer.arm.com/documentation/dui0203/j/handling-processor-exceptions/armv6-and-earlier--armv7-a-and-armv7-r-profiles/interrupt-handlers
16
16
// for details on how we need to save LR_irq, SPSR_irq and LR_sys.
17
-
.section .text._asm_default_irq_handler
17
+
.pushsection .text._asm_default_irq_handler
18
18
.arm
19
19
.global _asm_default_irq_handler
20
20
.type _asm_default_irq_handler, %function
@@ -43,6 +43,7 @@ core::arch::global_asm!(
43
43
msr spsr, lr //
44
44
ldmfd sp!, {{ pc }}^ // return from exception (^ => restore SPSR to CPSR)
Copy file name to clipboardExpand all lines: aarch32-rt/src/arch_v7/interrupt.rs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ core::arch::global_asm!(
12
12
//
13
13
// See https://developer.arm.com/documentation/dui0203/j/handling-processor-exceptions/armv6-and-earlier--armv7-a-and-armv7-r-profiles/interrupt-handlers
14
14
// for details on how we need to save LR_irq, SPSR_irq and LR_sys.
0 commit comments