#pragma once #include #include namespace LSPData { struct MIPSInstruction { std::string type; std::string mnemonic; std::string description; }; extern const std::vector MIPS_INSTRUCTION_LIST; } // namespace LSPData