mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-11-18 22:05:51 +00:00
22 lines
516 B
C++
22 lines
516 B
C++
#ifndef PPCDISASM_H
|
|
#define PPCDISASM_H
|
|
|
|
#include <cinttypes>
|
|
#include <string>
|
|
|
|
typedef struct PPCDisasmContext {
|
|
uint32_t instr_addr;
|
|
uint32_t instr_code;
|
|
std::string instr_str;
|
|
bool simplified; /* true if we should output simplified mnemonics */
|
|
} PPCDisasmContext;
|
|
|
|
std::string disassemble_single(PPCDisasmContext *ctx);
|
|
|
|
int test_ppc_disasm(void);
|
|
|
|
/** sign-extend an integer. */
|
|
#define SIGNEXT(x, sb) ((x) | (((x) & (1 << (sb))) ? ~((1 << (sb))-1) : 0))
|
|
|
|
#endif /* PPCDISASM_H */
|