1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00

docs(core): document shutdown_privileged

This commit is contained in:
Ondřej Vejpustek 2021-06-20 17:56:12 +02:00
parent 4968d7da53
commit 311288407e

View File

@ -123,8 +123,11 @@ jump_to_unprivileged:
.global shutdown_privileged
.type shutdown_privileged, STT_FUNC
// The function must be called from the privileged mode
shutdown_privileged:
cpsid f
cpsid f // disable all exceptions (except for NMI), the instruction is ignored in unprivileged mode
// if the exceptions weren't disabled, an exception handler (for example systick handler)
// could be called after the memory is erased, which would lead to another exception
ldr r0, =0
mov r1, r0
mov r2, r0