mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-26 18:13:11 +08:00
BOOTROM CHANGE: Add jump to interrupt handler from Advanced Interrupt Controller.
This change is necessary for all IRQ functionality. If a future osimage needs IRQ functions, the bootloader must be updated to at least this version.
This commit is contained in:
parent
d3b1f4e406
commit
2c3685c26c
1 changed files with 1 additions and 3 deletions
|
@ -18,7 +18,7 @@ flashstart:
|
|||
b prefetch_abort
|
||||
b data_abort
|
||||
b . @reserved
|
||||
b irq
|
||||
ldr pc, [pc,#-0xF20] @ IRQ - read the AIC
|
||||
b fiq
|
||||
|
||||
reset:
|
||||
|
@ -47,7 +47,5 @@ prefetch_abort:
|
|||
b .
|
||||
data_abort:
|
||||
b .
|
||||
irq:
|
||||
b .
|
||||
fiq:
|
||||
b .
|
||||
|
|
Loading…
Reference in a new issue