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

14 lines
335 B
C
Raw Normal View History

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