mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
14 lines
331 B
C++
14 lines
331 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <QFont>
|
|
#include "BiosDebugInfoProvider.h"
|
|
|
|
class CMIPS;
|
|
|
|
namespace DebugUtils
|
|
{
|
|
std::string PrintAddressLocation(uint32, CMIPS*, const BiosDebugModuleInfoArray&);
|
|
const BIOS_DEBUG_MODULE_INFO* FindModuleAtAddress(const BiosDebugModuleInfoArray&, uint32);
|
|
QFont CreateMonospaceFont();
|
|
}
|