Home | History | Annotate | Download | only in Sparc
      1 /* Capstone Disassembly Engine */
      2 /* By Nguyen Anh Quynh <aquynh (at) gmail.com>, 2013-2014 */
      3 
      4 #ifndef CS_SPARCINSTPRINTER_H
      5 #define CS_SPARCINSTPRINTER_H
      6 
      7 #include "../../MCInst.h"
      8 #include "../../MCRegisterInfo.h"
      9 #include "../../SStream.h"
     10 
     11 void Sparc_printInst(MCInst *MI, SStream *O, void *Info);
     12 
     13 void Sparc_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci);
     14 
     15 void Sparc_addReg(MCInst *MI, int reg);
     16 
     17 #endif
     18