historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/capstone/bindings/ocaml
2024-01-16 11:20:27 -06:00
..
arm.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
arm64.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
arm64_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
arm_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
capstone.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
Makefile phht hahahahaah 2024-01-16 11:20:27 -06:00
mips.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
mips_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
ocaml.c phht hahahahaah 2024-01-16 11:20:27 -06:00
ppc.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
ppc_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
README phht hahahahaah 2024-01-16 11:20:27 -06:00
sparc.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
sparc_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
systemz.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
sysz_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_arm.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_arm64.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_basic.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_detail.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_mips.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_ppc.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_sparc.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_systemz.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_x86.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
test_xcore.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
x86.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
x86_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
xcore.ml phht hahahahaah 2024-01-16 11:20:27 -06:00
xcore_const.ml phht hahahahaah 2024-01-16 11:20:27 -06:00

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.