mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
7670958fc5
[no changelog]
15 lines
242 B
C
15 lines
242 B
C
#ifndef __EMULATOR_H__
|
|
#define __EMULATOR_H__
|
|
|
|
#undef FIRMWARE_START
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
extern uint8_t *FIRMWARE_START;
|
|
|
|
void emulator_poll_events(void);
|
|
__attribute__((noreturn)) void jump_to(uint32_t address);
|
|
|
|
#endif
|