Home | History | Annotate | only in /external/capstone/bindings/java
Up to higher level directory
NameDateSize
capstone/21-Aug-2018
Makefile21-Aug-20181.7K
README21-Aug-2018826
run.sh21-Aug-2018780
Test.java21-Aug-20188.6K
TestArm.java21-Aug-20185.6K
TestArm64.java21-Aug-20184.8K
TestMips.java21-Aug-20183.1K
TestPpc.java21-Aug-20183.1K
TestSparc.java21-Aug-20183.5K
TestSystemz.java21-Aug-20183.4K
TestX86.java21-Aug-20186.2K
TestXcore.java21-Aug-20183.1K

README

      1 This has been tested with OpenJDK version 6 & 7 on Ubuntu-12.04 and
      2 Arch Linux-3.11, 64-bit.
      3 
      4 - OpenJDK is required to compile and run this test code.
      5   For example, install OpenJDK 6 with:
      6 
      7        $ sudo apt-get install openjdk-6-jre-headless openjdk-6-jdk
      8 
      9 - Java Native Access is required to run the code, you can install it with:
     10 
     11        $ sudo apt-get install libjna-java
     12 
     13 - To compile and run this Java test code:
     14 
     15        $ make
     16        $ ./run.sh
     17 
     18 
     19 This directory contains some test code to show how to use Capstone API.
     20 
     21 - Test.java
     22   This code shows the most simple form of API where we only want to get basic
     23   information out of disassembled instruction, such as address, mnemonic and
     24   operand string.
     25 
     26 - Test_<arch>.java
     27   These code show how to retrieve architecture-specific information for each
     28   architecture.
     29