File: xcore.ml

package info (click to toggle)
capstone 5.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 58,212 kB
  • sloc: ansic: 96,103; cpp: 67,489; cs: 29,510; python: 25,829; pascal: 24,412; java: 15,582; ml: 14,473; makefile: 1,274; sh: 479; ruby: 386
file content (26 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (11)
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
(* Capstone Disassembly Engine
 * By Guillaume Jeanne <guillaume.jeanne@ensimag.fr>, 2014> *)

open Xcore_const

type xcore_op_mem = {
	base: int;
	index: int;
	disp: int;
	direct: int;
}

type xcore_op_value =
	| XCORE_OP_INVALID of int
	| XCORE_OP_REG of int
	| XCORE_OP_IMM of int
	| XCORE_OP_MEM of xcore_op_mem

type xcore_op = {
	value: xcore_op_value;
}

type cs_xcore = { 
	operands: xcore_op array;
}