mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2025-02-18 22:27:57 +00:00
22 lines
252 B
C++
22 lines
252 B
C++
#ifndef __MDFN_PSX_DEBUG_H
|
|
#define __MDFN_PSX_DEBUG_H
|
|
|
|
#ifdef WANT_DEBUGGER
|
|
|
|
namespace MDFN_IEN_PSX
|
|
{
|
|
|
|
extern DebuggerInfoStruct PSX_DBGInfo;
|
|
|
|
bool DBG_Init(void);
|
|
|
|
void DBG_Break(void);
|
|
|
|
void DBG_GPUScanlineHook(unsigned scanline);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|