blob: 432138cedef280bb29357ab7a71b9062a2006dd6 [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001//= X86IntelInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class prints an X86 MCInst to Intel style .s file syntax.
11//
12//===----------------------------------------------------------------------===//
13
Nguyen Anh Quynhf721e312014-05-27 10:45:58 +080014/* Capstone Disassembly Engine */
15/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080016
Nguyen Anh Quynh57ab21b2014-01-02 12:44:20 +080017#ifndef CS_X86_INSTPRINTER_H
18#define CS_X86_INSTPRINTER_H
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080019
20#include "../../MCInst.h"
21#include "../../SStream.h"
22
23void X86_Intel_printInst(MCInst *MI, SStream *OS, void *Info);
24void X86_ATT_printInst(MCInst *MI, SStream *OS, void *Info);
25
26#endif