mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-08 21:52:42 +00:00
14 lines
209 B
C
14 lines
209 B
C
#ifndef __EMULATOR_H__
|
|
#define __EMULATOR_H__
|
|
|
|
#undef FIRMWARE_START
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
extern uint8_t *FIRMWARE_START;
|
|
|
|
__attribute__((noreturn)) void jump_to(uint32_t address);
|
|
|
|
#endif
|