Home | History | Annotate | only in /external/capstone/bindings/ocaml
Up to higher level directory
NameDateSize
arm.ml21-Aug-2018982
arm64.ml21-Aug-2018832
arm64_const.ml21-Aug-201828.8K
arm_const.ml21-Aug-201819.4K
capstone.ml21-Aug-20186K
Makefile21-Aug-20187.1K
mips.ml21-Aug-2018410
mips_const.ml21-Aug-201822.2K
ocaml.c21-Aug-201827.2K
ppc.ml21-Aug-2018487
ppc_const.ml21-Aug-201831.3K
README21-Aug-2018801
sparc.ml21-Aug-2018420
sparc_const.ml21-Aug-201812.3K
systemz.ml21-Aug-2018437
sysz_const.ml21-Aug-201820K
test_arm.ml21-Aug-20183.1K
test_arm64.ml21-Aug-20183K
test_basic.ml21-Aug-20183.6K
test_detail.ml21-Aug-20184.1K
test_mips.ml21-Aug-20182K
test_ppc.ml21-Aug-20182.2K
test_sparc.ml21-Aug-20182.3K
test_systemz.ml21-Aug-20182.2K
test_x86.ml21-Aug-20183.4K
test_xcore.ml21-Aug-20182.1K
x86.ml21-Aug-2018726
x86_const.ml21-Aug-201846.4K
xcore.ml21-Aug-2018411
xcore_const.ml21-Aug-20184.4K

README

      1 To compile Ocaml binding, Ocaml toolchain is needed. On Ubuntu Linux,
      2 you can install Ocaml with:
      3 
      4     $ sudo apt-get install ocaml-nox
      5 
      6 To compile Ocaml binding, simply run "make" on the command line.
      7 
      8 
      9 This directory also contains some test code to show how to use Capstone API.
     10 
     11 - test_basic.ml
     12   This code shows the most simple form of API where we only want to get basic
     13   information out of disassembled instruction, such as address, mnemonic and
     14   operand string.
     15 
     16 - test_detail.ml:
     17   This code shows how to access to architecture-neutral information in disassembled
     18   instructions, such as implicit registers read/written, or groups of instructions
     19   that this instruction belong to.
     20 
     21 - test_<arch>.ml
     22   These code show how to access architecture-specific information for each
     23   architecture.
     24