Play-/Source/ui_qt/DebugSupport/DebugUtils.h
Jean-Philip Desjardins 5af4236c40 Allow changing monospace font used in debugger through config.
Only possible by directly changing config.xml for now.
2022-04-12 10:24:49 -04:00

13 lines
335 B
C++

#pragma once
#include <string>
#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);
QFont CreateMonospaceFont();
}