• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..25-Jun-2020-

capstone/H07-May-2022-8,2877,717

.gitignoreH A D25-Jun-202013 32

MakefileH A D25-Jun-20201.7 KiB7054

READMEH A D25-Jun-2020826 2918

Test.javaH A D25-Jun-20208.6 KiB179163

TestArm.javaH A D25-Jun-20205.6 KiB141111

TestArm64.javaH A D25-Jun-20204.8 KiB12797

TestMips.javaH A D25-Jun-20203.1 KiB9268

TestPpc.javaH A D25-Jun-20203.1 KiB9770

TestSparc.javaH A D25-Jun-20203.5 KiB9872

TestSystemz.javaH A D25-Jun-20203.4 KiB9772

TestX86.javaH A D25-Jun-20206.2 KiB173125

TestXcore.javaH A D25-Jun-20203.1 KiB9068

run.shH A D25-Jun-2020780 2622

README

1This has been tested with OpenJDK version 6 & 7 on Ubuntu-12.04 and
2Arch 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
19This 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