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_ap/core_api.S

20 lines
259 B

#include <embed/fw_cs/svc_numbers.h>
.syntax unified
.text
.global core_print
.global core_get_secret
core_print:
svc #CORE_SVC_PRINT
bx lr
core_get_secret:
svc #CORE_SVC_GET_SECRET
bx lr
.end