Files
ppsspp/Core/MIPS/MIPSAsm.h

9 lines
190 B
C
Raw Permalink Normal View History

2013-07-28 14:50:25 +02:00
#pragma once
#include "Core/Debugger/DebugInterface.h"
namespace MIPSAsm {
2014-11-22 00:11:28 +01:00
bool MipsAssembleOpcode(const char* line, DebugInterface* cpu, u32 address);
2022-01-17 11:13:24 -08:00
std::string GetAssembleError();
}