mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 21:49:46 +00:00
17 lines
401 B
C
17 lines
401 B
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
|
|
|
|
#ifndef CS_X86_INSTPRINTERCOMMON_H
|
|
#define CS_X86_INSTPRINTERCOMMON_H
|
|
|
|
#include "../../MCInst.h"
|
|
#include "../../SStream.h"
|
|
|
|
|
|
void printSSEAVXCC(MCInst *MI, unsigned Op, SStream *O);
|
|
void printXOPCC(MCInst *MI, unsigned Op, SStream *O);
|
|
void printRoundingControl(MCInst *MI, unsigned Op, SStream *O);
|
|
|
|
#endif
|
|
|