mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
16 lines
467 B
C++
16 lines
467 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <QFont>
|
|
#include "MIPS.h"
|
|
#include "BiosDebugInfoProvider.h"
|
|
|
|
namespace DebugUtils
|
|
{
|
|
std::string PrintAddressLocation(uint32, CMIPS*, const BiosDebugModuleInfoArray&);
|
|
const BIOS_DEBUG_MODULE_INFO* FindModuleAtAddress(const BiosDebugModuleInfoArray&, uint32);
|
|
std::vector<uint32> FindCallers(CMIPS*, uint32);
|
|
std::vector<uint32> FindWordValueRefs(CMIPS*, uint32, uint32);
|
|
QFont CreateMonospaceFont();
|
|
}
|