aosp12/external/capstone/bindings/ocaml
hcl 7be3fd486c init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
..
Makefile init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
README init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
arm.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
arm64.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
arm64_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
arm_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
capstone.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
evm_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
m68k_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
m680x.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
m680x_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
mips.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
mips_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
ocaml.c init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
ppc.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
ppc_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
sparc.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
sparc_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
systemz.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
sysz_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_arm.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_arm64.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_basic.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_detail.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_m680x.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_mips.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_ppc.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_sparc.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_systemz.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_x86.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
test_xcore.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
tms320c64x_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
x86.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
x86_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
xcore.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
xcore_const.ml init from android-12.1.0_r8 2023-01-09 17:11:35 +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.