1#pragma once 2 3#include <string_view> 4#include "Core/Debugger/DebugInterface.h" 5 6bool MipsAssembleOpcode(std::string_view line, DebugInterface* cpu, u32 address, std::string *error); 7 8