1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00

startup: shutdown at end instead of loop

This commit is contained in:
Pavol Rusnak 2018-04-11 14:17:15 +02:00
parent 783f1c0323
commit 2a22d9140d

View File

@ -33,8 +33,8 @@ reset_handler:
// enter the application code
bl main
// loop forever if the application code returns
b .
// shutdown if the application code returns
b shutdown
.global shutdown
.type shutdown, STT_FUNC