1 /* Capstone Disassembly Engine */ 2 /* By Nguyen Anh Quynh, 2018 */ 3 4 #ifndef CS_EVMDISASSEMBLER_H 5 #define CS_EVMDISASSEMBLER_H 6 7 #include "../../MCInst.h" 8 9 bool EVM_getInstruction(csh ud, const uint8_t *code, size_t code_len, 10 MCInst *instr, uint16_t *size, uint64_t address, void *info); 11 12 #endif 13