1Documentation of Capstone disassembly framework. 2 3* Switching to 2.1 engine. 4 5 http://capstone-engine.org/version_2.1_API.html 6 7* How to compile & install Capstone. 8 9 http://capstone-engine.org/documentation.html 10 11* Programming with C language. 12 13 http://capstone-engine.org/lang_c.html 14 15* Programming with Python language. 16 17 http://capstone-engine.org/lang_python.html 18 19* Programming with Java language. 20 21 http://capstone-engine.org/lang_java.html 22 23* Build compact engine with only selected architectures. 24 25 http://capstone-engine.org/compile.html 26 27* Build "diet" engine for even smaller libraries. 28 29 http://capstone-engine.org/diet.html 30 31* Build embedded engine for firmware/OS kernel. 32 33 http://capstone-engine.org/embed.html 34 35* SKIPDATA mode to keep disassembling after hitting a broken instruction. 36 37 http://capstone-engine.org/skipdata.html 38 39* Quickly iterate instructions with cs_disasm_iter(). 40 41 http://capstone-engine.org/iteration.html 42 43* Build X86-reduce engine for firmware/OS kernel. 44 45 http://capstone-engine.org/x86reduce.html 46 47* Sample applications on how to embed Capstone into Windows kernel driver. 48 49 https://github.com/aquynh/capstone/tree/master/contrib/cs_driver (in C, basic) 50 https://github.com/aquynh/KernelProject (in C++) 51 52* Sample application on how to embed Capstone into Mac OSX Kext (kernel). 53 54 https://github.com/aquynh/CapstoneTest 55