Files
weee/arch/WASM/WASMDisassembler.h
T
iris 802798ce3c Squashed 'external/capstone/' content from commit e46f64fa
git-subtree-dir: external/capstone
git-subtree-split: e46f64fadb351e9ecd05264fab26f2772feb0994
2026-05-11 11:55:07 +02:00

14 lines
300 B
C

/* Capstone Disassembly Engine */
/* By Spike, xwings 2019 */
#ifndef CS_WASMDISASSEMBLER_H
#define CS_WASMDISASSEMBLER_H
#include "../../MCInst.h"
bool WASM_getInstruction(csh ud, const uint8_t *code, size_t code_len,
MCInst *instr, uint16_t *size, uint64_t address,
void *info);
#endif