mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07: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 prefetch_abort
|
||||||
b data_abort
|
b data_abort
|
||||||
b . @reserved
|
b . @reserved
|
||||||
b irq
|
ldr pc, [pc,#-0xF20] @ IRQ - read the AIC
|
||||||
b fiq
|
b fiq
|
||||||
|
|
||||||
reset:
|
reset:
|
||||||
|
@ -47,7 +47,5 @@ prefetch_abort:
|
||||||
b .
|
b .
|
||||||
data_abort:
|
data_abort:
|
||||||
b .
|
b .
|
||||||
irq:
|
|
||||||
b .
|
|
||||||
fiq:
|
fiq:
|
||||||
b .
|
b .
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue