blob: d6fe89f1b8d7dae72f4f4f8d8377b9bd622453c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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
|