blob: 33afc87a00a35a883cf2412c0f24826319a8ce92 [file] [log] [blame]
Nguyen Anh Quynh1ae38db2013-11-27 14:33:13 +08001Capstone source is organized as followings.
2
Nguyen Anh Quynhbdbde1f2013-11-27 17:00:06 +08003. <- core engine + README + COMPILE etc
4├── arch <- code handling disasm engine for each arch
5│   ├── AArch64 <- ARM64 (aka ARMv8) code
6│   ├── ARM <- ARM code
7│   ├── Mips <- Mips code
8│   └── X86 <- X86
9├── bindings <- all bindings
10│   ├── csharp <- C# bindings + test code
11│   ├── java <- Java bindings + test code
12│   ├── ocaml <- Ocaml bindings + test code
13│   ├── python <- Python bindings + test code
14│   └── ruby <- Ruby bindings + test code
15├── include <- API headers in C (*.h)
16├── release <- Precompiled binaries
Nguyen Anh Quynh1ae38db2013-11-27 14:33:13 +080017│   ├── linux
18│   ├── mac
19│   └── windows
Nguyen Anh Quynhbdbde1f2013-11-27 17:00:06 +080020├── tests <- Test code (in C)
Nguyen Anh Quynh1ae38db2013-11-27 14:33:13 +080021
22
23Follow COMPILE to see how to compile and run code.
24Note: if you find some bugs during compilation, it is recommended to clean
25the code and try again, for example with:
26
27 $ make clean
28 $ make
29
30