Play-/Source/ui_qt/DebugSupport/DebugUtils.h
Jean-Philip Desjardins 7a4ff641d4 Cleanup.
2023-11-06 18:25:12 -05:00

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();
}