about summary refs log tree commit diff stats
path: root/src/include/box64cpu.h
blob: 72df2c69d0438fd7b7864e47529d63031e17303b (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);
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_