Path: blob/master/libs/capstone/arch/X86/X86InstPrinter.h
4389 views
//= X86IntelInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//1//2// The LLVM Compiler Infrastructure3//4// This file is distributed under the University of Illinois Open Source5// License. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//8//9// This class prints an X86 MCInst to Intel style .s file syntax.10//11//===----------------------------------------------------------------------===//1213/* Capstone Disassembly Engine */14/* By Nguyen Anh Quynh <[email protected]>, 2013-2019 */1516#ifndef CS_X86_INSTPRINTER_H17#define CS_X86_INSTPRINTER_H1819#include "../../MCInst.h"20#include "../../SStream.h"2122void X86_Intel_printInst(MCInst *MI, SStream *OS, void *Info);23void X86_ATT_printInst(MCInst *MI, SStream *OS, void *Info);2425#endif262728