mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 08:39:51 +00:00
9 lines
191 B
C++
9 lines
191 B
C++
#pragma once
|
|
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
|
|
namespace MIPSAsm {
|
|
bool MipsAssembleOpcode(const char* line, DebugInterface* cpu, u32 address);
|
|
std::wstring GetAssembleError();
|
|
}
|