mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
3036d524a6
so that we can compile it with clang [no changelog]
18 lines
293 B
C
18 lines
293 B
C
#ifndef __EMULATOR_H__
|
|
#define __EMULATOR_H__
|
|
|
|
#define CLOCK_180_MHZ 0
|
|
|
|
#undef FIRMWARE_START
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
extern uint8_t *FIRMWARE_START;
|
|
|
|
void emulator_poll_events(void);
|
|
void set_core_clock(int);
|
|
__attribute__((noreturn)) void jump_to(uint32_t address);
|
|
|
|
#endif
|