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

..14-Dec-2021-

capstone/H07-May-2022-14,18313,717

.gitignoreH A D14-Dec-202113 32

MakefileH A D14-Dec-20211.7 KiB7255

READMEH A D14-Dec-2021830 2918

TestArm.javaH A D14-Dec-20215.8 KiB143113

TestArm64.javaH A D14-Dec-20214.6 KiB12595

TestBasic.javaH A D14-Dec-20218.6 KiB179163

TestM680x.javaH A D14-Dec-20218.6 KiB208172

TestMips.javaH A D14-Dec-20213.2 KiB9268

TestPpc.javaH A D14-Dec-20213.1 KiB9770

TestSparc.javaH A D14-Dec-20213.5 KiB9872

TestSystemz.javaH A D14-Dec-20213.4 KiB9772

TestX86.javaH A D14-Dec-20218.1 KiB228169

TestXcore.javaH A D14-Dec-20213.2 KiB9068

run.shH A D14-Dec-2021850 2723

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- TestBasic.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