mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-10-31 20:39:48 +00:00
34 lines
1.3 KiB
ArmAsm
34 lines
1.3 KiB
ArmAsm
.syntax unified
|
|
|
|
#include "version.h"
|
|
|
|
.section .header, "a"
|
|
|
|
.type g_header, %object
|
|
.size g_header, .-g_header
|
|
|
|
g_header:
|
|
.byte 'T','R','Z','F' // magic
|
|
.word reset_handler // reset handler, replace later with : .word g_header_end - g_header // hdrlen
|
|
.word 0 // expiry
|
|
.word _codelen // codelen
|
|
.byte VERSION_MAJOR // vmajor
|
|
.byte VERSION_MINOR // vminor
|
|
.byte VERSION_PATCH // vpatch
|
|
.byte 0 // vbuild
|
|
.byte FIX_VERSION_MAJOR // fix_vmajor
|
|
.byte FIX_VERSION_MINOR // fix_vminor
|
|
.byte FIX_VERSION_PATCH // fix_vpatch
|
|
.byte 0 // fix_vbuild
|
|
. = . + 8 // reserved
|
|
. = . + 512 // hash1 ... hash16
|
|
. = . + 64 // sig1
|
|
. = . + 64 // sig2
|
|
. = . + 64 // sig3
|
|
.byte 0 // sigindex1
|
|
.byte 0 // sigindex2
|
|
.byte 0 // sigindex3
|
|
. = . + 220 // reserved
|
|
. = . + 65 // reserved
|
|
g_header_end:
|