mirror of
https://github.com/libretro/Play-.git
synced 2024-12-04 15:26:23 +00:00
15 lines
342 B
C++
15 lines
342 B
C++
#ifndef _DEBUGUTILS_H_
|
|
#define _DEBUGUTILS_H_
|
|
|
|
#include "tcharx.h"
|
|
#include "../MIPS.h"
|
|
#include "../BiosDebugInfoProvider.h"
|
|
|
|
namespace DebugUtils
|
|
{
|
|
std::tstring PrintAddressLocation(uint32, CMIPS*, const BiosDebugModuleInfoArray&);
|
|
const BIOS_DEBUG_MODULE_INFO* FindModuleAtAddress(const BiosDebugModuleInfoArray&, uint32);
|
|
}
|
|
|
|
#endif
|