Files
kaizen/arch/WASM/WASMInstPrinter.h
SimoneN64 352a52804d Squashed 'external/capstone/' content from commit 5430745e962
git-subtree-dir: external/capstone
git-subtree-split: 5430745e9623786f65c0d773a417f389ebb43395
2024-09-23 19:06:48 +02:00

19 lines
382 B
C

/* Capstone Disassembly Engine */
/* By Spike, xwings 2019 */
#ifndef CS_WASMINSTPRINTER_H
#define CS_WASMINSTPRINTER_H
#include "capstone/capstone.h"
#include "../../MCInst.h"
#include "../../SStream.h"
#include "../../cs_priv.h"
struct SStream;
void WASM_printInst(MCInst *MI, struct SStream *O, void *Info);
void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
#endif