mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
13 lines
191 B
ArmAsm
13 lines
191 B
ArmAsm
.extern BootROM
|
|
|
|
.section .startphase2,"ax"
|
|
.code 32
|
|
.align 0
|
|
|
|
.global ramstart
|
|
ramstart:
|
|
ldr sp, .stack_end
|
|
bl BootROM
|
|
|
|
.stack_end:
|
|
.word _stack_end
|