mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 18:53:55 +02:00
15 lines
400 B
C
15 lines
400 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
|