mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-11 13:06:40 +03:00
14 lines
342 B
C++
14 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
|