using spaces for indentation for HACK
This commit is contained in:
parent
6c85e5a962
commit
bdbde1f768
30
HACK
30
HACK
|
@ -1,23 +1,23 @@
|
|||
Capstone source is organized as followings.
|
||||
|
||||
. <- core engine + README + COMPILE etc
|
||||
├── arch <- code handling disasm for each arch
|
||||
│ ├── AArch64 <- ARM64 (aka ARMv8)
|
||||
│ ├── ARM <- ARM
|
||||
│ ├── Mips <- Mips
|
||||
│ └── 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
|
||||
. <- 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
|
||||
│ ├── linux
|
||||
│ ├── mac
|
||||
│ └── windows
|
||||
├── tests <- Test code (in C)
|
||||
├── tests <- Test code (in C)
|
||||
|
||||
|
||||
Follow COMPILE to see how to compile and run code.
|
||||
|
|
Loading…
Reference in New Issue