Play-/Source/ui_qt/DebugSupport/DebugUtils.h

15 lines
331 B
C
Raw Permalink Normal View History

#pragma once
#include <string>
#include <QFont>
#include "BiosDebugInfoProvider.h"
2023-11-06 18:25:12 -05:00
class CMIPS;
namespace DebugUtils
{
std::string PrintAddressLocation(uint32, CMIPS*, const BiosDebugModuleInfoArray&);
const BIOS_DEBUG_MODULE_INFO* FindModuleAtAddress(const BiosDebugModuleInfoArray&, uint32);
QFont CreateMonospaceFont();
}