android13/external/capstone/bindings/ocaml
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
Makefile initial 2024-06-22 20:45:49 +08:00
README initial 2024-06-22 20:45:49 +08:00
arm.ml initial 2024-06-22 20:45:49 +08:00
arm64.ml initial 2024-06-22 20:45:49 +08:00
arm64_const.ml initial 2024-06-22 20:45:49 +08:00
arm_const.ml initial 2024-06-22 20:45:49 +08:00
capstone.ml initial 2024-06-22 20:45:49 +08:00
evm_const.ml initial 2024-06-22 20:45:49 +08:00
m68k_const.ml initial 2024-06-22 20:45:49 +08:00
m680x.ml initial 2024-06-22 20:45:49 +08:00
m680x_const.ml initial 2024-06-22 20:45:49 +08:00
mips.ml initial 2024-06-22 20:45:49 +08:00
mips_const.ml initial 2024-06-22 20:45:49 +08:00
ocaml.c initial 2024-06-22 20:45:49 +08:00
ppc.ml initial 2024-06-22 20:45:49 +08:00
ppc_const.ml initial 2024-06-22 20:45:49 +08:00
sparc.ml initial 2024-06-22 20:45:49 +08:00
sparc_const.ml initial 2024-06-22 20:45:49 +08:00
systemz.ml initial 2024-06-22 20:45:49 +08:00
sysz_const.ml initial 2024-06-22 20:45:49 +08:00
test_arm.ml initial 2024-06-22 20:45:49 +08:00
test_arm64.ml initial 2024-06-22 20:45:49 +08:00
test_basic.ml initial 2024-06-22 20:45:49 +08:00
test_detail.ml initial 2024-06-22 20:45:49 +08:00
test_m680x.ml initial 2024-06-22 20:45:49 +08:00
test_mips.ml initial 2024-06-22 20:45:49 +08:00
test_ppc.ml initial 2024-06-22 20:45:49 +08:00
test_sparc.ml initial 2024-06-22 20:45:49 +08:00
test_systemz.ml initial 2024-06-22 20:45:49 +08:00
test_x86.ml initial 2024-06-22 20:45:49 +08:00
test_xcore.ml initial 2024-06-22 20:45:49 +08:00
tms320c64x_const.ml initial 2024-06-22 20:45:49 +08:00
x86.ml initial 2024-06-22 20:45:49 +08:00
x86_const.ml initial 2024-06-22 20:45:49 +08:00
xcore.ml initial 2024-06-22 20:45:49 +08:00
xcore_const.ml initial 2024-06-22 20:45:49 +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_basic.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.