about summary refs log tree commit diff stats
path: root/src/include/box64cpu.h
blob: b565e06f0050c0354b2b70f1f65bed3d903c3804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __BOX64CPU_H_
#define __BOX64CPU_H_

typedef struct x64emu_s x64emu_t;

int Run(x64emu_t *emu, int step, int need_tf);
void EmuCall(x64emu_t* emu, uintptr_t addr);
void StopEmu(x64emu_t* emu, const char* reason, int is32bits);
void DynaRun(x64emu_t *emu);
void DynaCall(x64emu_t* emu, uintptr_t addr);

#endif // __BOX64CPU_H_