capstone/bindings/ocaml
Nguyen Anh Quynh 586be76d73 ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
..
Makefile ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
README ocaml: update README 2014-06-26 22:29:46 +08:00
arm.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
arm64.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
arm64_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
arm_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
capstone.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
mips.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
mips_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
ocaml.c OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
ppc.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
ppc_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
sparc.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
sparc_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
systemz.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
sysz_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
test.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_arm.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
test_arm64.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
test_detail.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_mips.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_ppc.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_sparc.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_systemz.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
test_x86.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
test_xcore.ml OCaml: add sparc, systemz and xcore 2014-08-19 14:46:06 +02:00
x86.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
x86_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
xcore.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00
xcore_const.ml ocaml: separate constants into separate files, which are actually autogen by const_generator.py 2014-09-21 23:23:38 +08:00

README

To compile Ocaml binding, Ocaml toolchain is needed. On Ubuntu Linux,
you can install Ocaml with:

    $ sudo apt-get install ocaml-nox

To compile Ocaml binding, simply run "make" on the command line.


This directory also contains some test code to show how to use Capstone API.

- test.ml
  This code shows the most simple form of API where we only want to get basic
  information out of disassembled instruction, such as address, mnemonic and
  operand string.

- test_detail.ml:
  This code shows how to access to architecture-neutral information in disassembled
  instructions, such as implicit registers read/written, or groups of instructions
  that this instruction belong to.

- test_<arch>.ml
  These code show how to access architecture-specific information for each
  architecture.