blob: b21259f00c588023bc6a1397774474651f9f9dd4 [file] [log] [blame]
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +08001Documention of Capstone disassembly framework.
2
Nguyen Anh Quynhcc0cb492014-02-28 17:32:17 +08003* Switching to 2.1 engine.
4
5 http://capstone-engine.org/version_2.1_API.html
6
Nguyen Anh Quynh48476dd2014-03-02 00:15:04 +08007* How to compile & install Capstone.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +08008
9 http://capstone-engine.org/documentation.html
10
Nguyen Anh Quynh1cbe4c62014-02-25 10:04:07 +080011* Programming with C language.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080012
13 http://capstone-engine.org/lang_c.html
14
Nguyen Anh Quynh1cbe4c62014-02-25 10:04:07 +080015* Programming with Python language.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080016
17 http://capstone-engine.org/lang_python.html
18
Nguyen Anh Quynh1cbe4c62014-02-25 10:04:07 +080019* Programming with Java language.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080020
21 http://capstone-engine.org/lang_java.html
22
Nguyen Anh Quynh1cbe4c62014-02-25 10:04:07 +080023* Build compact engine with only selected architectures.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080024
25 http://capstone-engine.org/compile.html
26
Nguyen Anh Quynh1cbe4c62014-02-25 10:04:07 +080027* Build "diet" engine for even smaller libraries.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080028
29 http://capstone-engine.org/diet.html
30
Nguyen Anh Quynh0fce8d72014-03-01 23:32:23 +080031* Build embedded engine for firmware/OS kernel.
Nguyen Anh Quynh35b5eb02014-02-24 17:48:07 +080032
Nguyen Anh Quynh0fce8d72014-03-01 23:32:23 +080033 http://capstone-engine.org/embed.html
Nguyen Anh Quynh1dce9c22014-03-27 11:45:28 +080034
Nguyen Anh Quynhe1245132014-04-11 01:32:48 +080035* SKIPDATA mode to keep disassembling after hitting a broken instruction.
36
37 http://capstone-engine.org/skipdata.html
38
Nguyen Anh Quynha91c1992014-10-13 07:27:16 +080039* Quickly iterate instructions with cs_disasm_iter().
40
41 http://capstone-engine.org/iteration.html
42
Nguyen Anh Quynh1dce9c22014-03-27 11:45:28 +080043* Build X86-reduce engine for firmware/OS kernel.
44
Nguyen Anh Quynh3c5ab992014-03-27 16:05:38 +080045 http://capstone-engine.org/x86reduce.html
Nguyen Anh Quynhaa791a22014-07-11 11:18:15 +080046
47* Sample application on how to embed Capstone into Windows kernel driver.
48
49 https://github.com/aquynh/KernelProject
50
51* Sample application on how to embed Capstone into Mac OSX Kext (kernel).
52
53 https://github.com/aquynh/CapstoneTest