File: WASMModule.c

package info (click to toggle)
rust-capstone-sys 0.17.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,524 kB
  • sloc: ansic: 70,376; cs: 18,890; pascal: 14,893; java: 14,778; ml: 13,672; python: 6,145; makefile: 1,172; sh: 532; cpp: 285
file content (33 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Capstone Disassembly Engine */
/* By Spike, xwings 2019 */

#ifdef CAPSTONE_HAS_WASM

#include "../../cs_priv.h"
#include "WASMDisassembler.h"
#include "WASMInstPrinter.h"
#include "WASMMapping.h"
#include "WASMModule.h"

cs_err WASM_global_init(cs_struct *ud)
{
	// verify if requested mode is valid
	if (ud->mode)
		return CS_ERR_MODE;

	ud->printer = WASM_printInst;
	ud->printer_info = NULL;
	ud->insn_id = WASM_get_insn_id;
	ud->insn_name = WASM_insn_name;
	ud->group_name = WASM_group_name;
	ud->disasm = WASM_getInstruction;

	return CS_ERR_OK;
}

cs_err WASM_option(cs_struct *handle, cs_opt_type type, size_t value)
{
	return CS_ERR_OPTION;
}

#endif