1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/micropython/trezorhal/common.h

20 lines
465 B
C
Raw Normal View History

#ifndef __TREZORHAL_COMMON_H__
#define __TREZORHAL_COMMON_H__
2017-03-29 18:50:45 +00:00
#include <stdint.h>
2017-04-10 17:11:44 +00:00
#define BOARDLOADER_START 0x08000000
2017-04-10 17:24:21 +00:00
#define BOOTLOADER_START 0x08010000
2017-04-10 17:11:44 +00:00
#define FIRMWARE_START 0x08020000
#define HEADER_SIZE 0x200
void periph_init(void);
void __attribute__((noreturn)) __fatal_error(const char *msg, const char *file, int line, const char *func);
void __attribute__((noreturn)) nlr_jump_fail(void *val);
2017-03-29 18:50:45 +00:00
void jump_to(uint32_t address);
#endif