mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
23 lines
439 B
C
23 lines
439 B
C
|
|
#pragma once
|
|
|
|
void os_ignore();
|
|
void os_ret0();
|
|
void os_ret1();
|
|
void os_trap();
|
|
|
|
// HLE state variables
|
|
struct HLEControl
|
|
{
|
|
// current loaded map file
|
|
wchar_t mapfile[0x1000];
|
|
};
|
|
|
|
extern HLEControl hle;
|
|
|
|
void HLESetCall(const char *name, void (*call)());
|
|
void HLEInit();
|
|
void HLEShutdown();
|
|
void HLEOpen();
|
|
void HLEClose();
|
|
void HLEExecuteCallback(uint32_t entryPoint);
|