• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..25-Nov-2018-

MakefileH A D25-Nov-20187.9 KiB300202

READMEH A D25-Nov-2018801 2416

arm.mlH A D25-Nov-20181 KiB5647

arm64.mlH A D25-Nov-2018832 4740

arm64_const.mlH A D25-Nov-201828.3 KiB1,007990

arm_const.mlH A D25-Nov-201820.1 KiB776763

capstone.mlH A D25-Nov-20187.2 KiB215183

evm_const.mlH A D25-Nov-20184 KiB152149

m680x.mlH A D25-Nov-2018830 4939

m680x_const.mlH A D25-Nov-201811 KiB416410

m68k_const.mlH A D25-Nov-201813 KiB486476

mips.mlH A D25-Nov-2018410 2519

mips_const.mlH A D25-Nov-201823.1 KiB862855

ocaml.cH A D25-Nov-201832.2 KiB1,104959

ppc.mlH A D25-Nov-2018487 3527

ppc_const.mlH A D25-Nov-201837 KiB1,3661,359

sparc.mlH A D25-Nov-2018420 2821

sparc_const.mlH A D25-Nov-201811.9 KiB430423

systemz.mlH A D25-Nov-2018437 2822

sysz_const.mlH A D25-Nov-201819.8 KiB754748

test_arm.mlH A D25-Nov-20183.2 KiB10684

test_arm64.mlH A D25-Nov-20183 KiB10280

test_basic.mlH A D25-Nov-20183.6 KiB6859

test_detail.mlH A D25-Nov-20184.1 KiB8874

test_m680x.mlH A D25-Nov-20186.9 KiB168147

test_mips.mlH A D25-Nov-20182 KiB7660

test_ppc.mlH A D25-Nov-20182.2 KiB8266

test_sparc.mlH A D25-Nov-20182.3 KiB8062

test_systemz.mlH A D25-Nov-20182.2 KiB8163

test_x86.mlH A D25-Nov-20183.3 KiB11895

test_xcore.mlH A D25-Nov-20182.1 KiB7962

tms320c64x_const.mlH A D25-Nov-20188.6 KiB278269

x86.mlH A D25-Nov-2018746 4842

x86_const.mlH A D25-Nov-201855.9 KiB1,9631,953

xcore.mlH A D25-Nov-2018411 2720

xcore_const.mlH A D25-Nov-20184.2 KiB162157

README

1To compile Ocaml binding, Ocaml toolchain is needed. On Ubuntu Linux,
2you can install Ocaml with:
3
4    $ sudo apt-get install ocaml-nox
5
6To compile Ocaml binding, simply run "make" on the command line.
7
8
9This directory also contains some test code to show how to use Capstone API.
10
11- test_basic.ml
12  This code shows the most simple form of API where we only want to get basic
13  information out of disassembled instruction, such as address, mnemonic and
14  operand string.
15
16- test_detail.ml:
17  This code shows how to access to architecture-neutral information in disassembled
18  instructions, such as implicit registers read/written, or groups of instructions
19  that this instruction belong to.
20
21- test_<arch>.ml
22  These code show how to access architecture-specific information for each
23  architecture.
24