You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/fw_ss/asm_helpers.S

23 lines
291 B

.syntax unified
.text
.global jump_unsecure
.set SCB_VTOR_NS, 0xE002ED08
jump_unsecure:
ldr r1, =SCB_VTOR_NS
str r0, [r1]
ldr r1, [r0, #0]
msr MSP_NS, r1
ldr r1, [r0, #4]
movs r0, #1
bics r1, r0 // bit0 == 0 => transition to Non-secure
bxns r1