mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-24 07:18:09 +00:00
15 lines
271 B
C
15 lines
271 B
C
#ifndef __TREZORHAL_COMMON_H__
|
|
#define __TREZORHAL_COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void periph_init(void);
|
|
|
|
void __attribute__((noreturn)) nlr_jump_fail(void *val);
|
|
|
|
void __attribute__((noreturn)) __fatal_error(const char *msg);
|
|
|
|
void jump_to(uint32_t address);
|
|
|
|
#endif
|