blob: 41e604f85357a4a35eb5029b2ef1e64124d23de8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef DISASSEMBLER_H
#define DISASSEMBLER_H
void mips_Decode(unsigned int opcode, unsigned int addr, char* output, int arrows);
unsigned int mips_GetNextPc(unsigned int *regs, int stepover);
unsigned int mips_GetJumpAddr(unsigned int addr, unsigned int opcode);
#endif /* DISASSEMBLER_H */
|