mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
12 lines
194 B
C++
12 lines
194 B
C++
#ifndef RSP_DISASM_HPP_
|
|
#define RSP_DISASM_HPP_
|
|
|
|
#include <string>
|
|
|
|
namespace RSP
|
|
{
|
|
std::string disassemble(uint32_t pc, uint32_t instr);
|
|
const char *register_name(unsigned reg_index);
|
|
}
|
|
|
|
#endif |