mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-01-16 04:43:15 +01:00
ARM/IntegratorCP: add spacing.
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
.equ I_BIT, 0x80 /* when I bit is set, IRQ is disabled */
|
||||
.equ F_BIT, 0x40 /* when F bit is set, FIQ is disabled */
|
||||
|
||||
|
||||
__interrupt_vector_table:
|
||||
|
||||
B Reset_Handler /* Reset */
|
||||
@@ -27,12 +28,10 @@ __interrupt_vector_table:
|
||||
B Null_Handler /* reserved */
|
||||
B IRQ_Handler /* IRQ */
|
||||
B Null_Handler /* FIQ */
|
||||
|
||||
|
||||
|
||||
Reset_Handler:
|
||||
|
||||
|
||||
MSR CPSR_c,#(IRQ_MODE | I_BIT | F_BIT)
|
||||
LDR sp,=__irq_stack_top__ /* set the IRQ stack pointer */
|
||||
MSR CPSR_c,#(FIQ_MODE | I_BIT | F_BIT)
|
||||
@@ -46,8 +45,10 @@ Reset_Handler:
|
||||
|
||||
B .
|
||||
|
||||
|
||||
IRQ_Handler:
|
||||
B archIRQHandler
|
||||
|
||||
|
||||
Null_Handler:
|
||||
B null_handler
|
||||
|
||||
Reference in New Issue
Block a user