CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/MIPS/MIPSAsm.h
Views: 1401
1
#pragma once
2
3
#include "Core/Debugger/DebugInterface.h"
4
5
namespace MIPSAsm {
6
bool MipsAssembleOpcode(const char* line, DebugInterface* cpu, u32 address);
7
std::string GetAssembleError();
8
}
9
10