redream/deps/capstone/bindings/ocaml
Anthony Pesch aaecac5902 replace beaengine with capstone 2016-04-21 23:08:58 -07:00
..
README replace beaengine with capstone 2016-04-21 23:08:58 -07:00
arm.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
arm64.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
arm64_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
arm_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
capstone.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
mips.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
mips_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
ocaml.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
ppc.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
ppc_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
sparc.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
sparc_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
systemz.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
sysz_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_arm.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_arm64.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_detail.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_mips.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_ppc.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_sparc.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_systemz.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_x86.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
test_xcore.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
x86.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
x86_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
xcore.ml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
xcore_const.ml replace beaengine with capstone 2016-04-21 23:08:58 -07: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.