2013-11-27 14:33:13 +08:00
|
|
|
Capstone source is organized as followings.
|
|
|
|
|
2013-11-27 17:00:06 +08:00
|
|
|
. <- core engine + README + COMPILE etc
|
|
|
|
├── arch <- code handling disasm engine for each arch
|
|
|
|
│ ├── AArch64 <- ARM64 (aka ARMv8) code
|
|
|
|
│ ├── ARM <- ARM code
|
|
|
|
│ ├── Mips <- Mips code
|
|
|
|
│ └── X86 <- X86
|
|
|
|
├── bindings <- all bindings
|
|
|
|
│ ├── csharp <- C# bindings + test code
|
|
|
|
│ ├── java <- Java bindings + test code
|
|
|
|
│ ├── ocaml <- Ocaml bindings + test code
|
|
|
|
│ ├── python <- Python bindings + test code
|
|
|
|
│ └── ruby <- Ruby bindings + test code
|
|
|
|
├── include <- API headers in C (*.h)
|
|
|
|
├── release <- Precompiled binaries
|
2013-11-27 14:33:13 +08:00
|
|
|
│ ├── linux
|
|
|
|
│ ├── mac
|
|
|
|
│ └── windows
|
2013-11-27 17:00:06 +08:00
|
|
|
├── tests <- Test code (in C)
|
2013-11-27 14:33:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
Follow COMPILE to see how to compile and run code.
|
|
|
|
Note: if you find some bugs during compilation, it is recommended to clean
|
|
|
|
the code and try again, for example with:
|
|
|
|
|
|
|
|
$ make clean
|
|
|
|
$ make
|
|
|
|
|
|
|
|
|