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

..--

capstone/22-Nov-2023-8,2877,717

.gitignoreD22-Nov-202313 32

MakefileD22-Nov-20231.7 KiB7054

READMED22-Nov-2023826 2918

Test.javaD22-Nov-20238.6 KiB179163

TestArm.javaD22-Nov-20235.6 KiB141111

TestArm64.javaD22-Nov-20234.8 KiB12797

TestMips.javaD22-Nov-20233.1 KiB9268

TestPpc.javaD22-Nov-20233.1 KiB9770

TestSparc.javaD22-Nov-20233.5 KiB9872

TestSystemz.javaD22-Nov-20233.4 KiB9772

TestX86.javaD22-Nov-20236.2 KiB173125

TestXcore.javaD22-Nov-20233.1 KiB9068

run.shD22-Nov-2023780 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