1. 34f9638 add new API: cs_strerror() return a string describing a given error code. this should be used together with cs_errno() by Nguyen Anh Quynh · 11 years ago
  2. 5f1f90c fix for the last commit, and make the test code no longer specify ppc code as 64bit by Nguyen Anh Quynh · 11 years ago
  3. e06b2d0 python: simplify access to operand's information thanks to some getters for <ARCH>Ops classes by Nguyen Anh Quynh · 11 years ago
  4. ef709f0 python: cs_disasm*() now use generator rather than a list to return disassembled instructions. suggested by Mario Vilas. by Nguyen Anh Quynh · 11 years ago
  5. f2d0ff2 python: add PPC sample to test.py by Nguyen Anh Quynh · 11 years ago
  6. 4d22779 add the missing include/ppc.h by Nguyen Anh Quynh · 11 years ago
  7. 42c6b1a initial support for PPC by Nguyen Anh Quynh · 11 years ago
  8. 51a7710 java: update cs_version() prototype following the changes to this API in the core by Nguyen Anh Quynh · 11 years ago
  9. 82fe8ff python: update binding following the changes to cs_version() by Nguyen Anh Quynh · 11 years ago
  10. 80348ba Clean up unused code and some coding style by danghvu · 11 years ago
  11. ef9bd0a Let jna handle alignment, reduce performance but more cross-platform by danghvu · 11 years ago
  12. 8677ce7 Minor changes for x86 compatibility by danghvu · 11 years ago
  13. 03be9f5 Fix java binding for cs2 branch by danghvu · 11 years ago
  14. 496a62b python: update to new API cs_disasm_ex() by Nguyen Anh Quynh · 11 years ago
  15. 3a87fb9 python: minor fix for comments of _dummy_cs class by Nguyen Anh Quynh · 11 years ago
  16. 3cbb230 python: keep referencing Cs class so make sure it is around until all CsInsn objects are deleted. bug reported by felixwilhelm by Nguyen Anh Quynh · 11 years ago
  17. 9ac9fcf python: support newly added API cs_support() & cs_version_ex() by Nguyen Anh Quynh · 11 years ago
  18. e76eae2 python: fix for README to keep lines within 80 columns for readability by Nguyen Anh Quynh · 11 years ago
  19. 6eae731 Merge branch 'master' of https://github.com/0xKD/capstone into pkgconfig by Nguyen Anh Quynh · 11 years ago
  20. 7008356 change cs_insn struct to follow the commit 18103e4a. fixed Python & Java bindings accordingly. attn: bindings by Nguyen Anh Quynh · 11 years ago
  21. 6b7b7d9 Make instruction distinction clearer by Kedar · 11 years ago
  22. 5f0c686 python: correct the last commit to fix cs_disasm_quick() by Nguyen Anh Quynh · 11 years ago
  23. edf1091 Update README for Windows install by Kedar · 11 years ago
  24. e71abd4 python: cs_disasm_quick() doesnt create CsInsn array on return, and makes reference to non-existent self. bug reported by Mario Vilas by Nguyen Anh Quynh · 11 years ago
  25. 1bdb23a add CS_OPT_MODE option. this allows us to change engine's mode at run-time by Nguyen Anh Quynh · 11 years ago
  26. d06e2f5 arm: expose alias registers SB, SL, FP & IP. attn: bindings by Nguyen Anh Quynh · 11 years ago
  27. 5331152 Merge branch 'master' of https://github.com/aquynh/capstone by Nguyen Anh Quynh · 11 years ago
  28. 315930d python: correct DLL file for dynamic loading when module is imported by Nguyen Anh Quynh · 11 years ago
  29. fa0639b python: clean setup.py by Nguyen Anh Quynh · 11 years ago
  30. 36508ff Fixed size of regWrite, regRead nd group by danghvu · 11 years ago
  31. 4ef20d5 Fixed naming convention by danghvu · 11 years ago
  32. 13adb95 Fix java error when JNA attempts to readField(op) when op_count == 0 by danghvu · 11 years ago
  33. 572afee python: code style: replace tab with 4 spaces by Nguyen Anh Quynh · 11 years ago
  34. 29d138f python: rename some public python classes to follow python naming convention by Nguyen Anh Quynh · 11 years ago
  35. 7957ed1 arm64: add some alias registers. attn: bindings by Nguyen Anh Quynh · 11 years ago
  36. 4994c58 bindings: support new 'detail' option for java & python by Nguyen Anh Quynh · 11 years ago
  37. ad89d25 mips: optimize Mips_map_register() to O(1). suggested by Pancake by Nguyen Anh Quynh · 11 years ago
  38. 66f6c22 mips: fix NEGU alias instruction. bug reported by Pancake by Nguyen Anh Quynh · 11 years ago
  39. 8940e5c java: return empty array when op_count = 0, rather than NULL. this is to be consistent with all other bindings by Nguyen Anh Quynh · 11 years ago
  40. aa036ee bindings: add cs_version() back for python & java by Nguyen Anh Quynh · 11 years ago
  41. 67fd143 python: remove useless __init__.py by Nguyen Anh Quynh · 11 years ago
  42. 98bc9c3 bindings: update java & python follow last API change by Nguyen Anh Quynh · 11 years ago
  43. 3ff4ccb bindings: update python & java following mips core engine by Nguyen Anh Quynh · 11 years ago
  44. bac111c bindings: update python & java following arm64 update by Nguyen Anh Quynh · 11 years ago
  45. dcde7e7 python: replace op_index() with op_find(), which straightly returns the desired operand rather than its cumbersome index by Nguyen Anh Quynh · 11 years ago
  46. f1618bc python: add error message to CsError and modify all tests to use CsError exception by Nguyen Anh Quynh · 11 years ago
  47. 73a6dba python: commented out the printout of @bytes, so 'make tests' doesnt complain anymore by Nguyen Anh Quynh · 11 years ago
  48. db048ab python: reimplement cs_op_count(), cs_op_index() & cs_insn_group() in python, so no need to save instruction raw data anymore by Nguyen Anh Quynh · 11 years ago
  49. 9b54264 Merge branch 'cserror' by Nguyen Anh Quynh · 11 years ago
  50. cdf41b0 python: delete dead code by Nguyen Anh Quynh · 11 years ago
  51. e099ede Fix Python bindings: by Nguyen Anh Quynh · 11 years ago
  52. 520c361 rename python classes and using exception for error by Nguyen Anh Quynh · 11 years ago
  53. 486111c Update Makefile to be able to test each binding individually by danghvu · 11 years ago
  54. 0500691 Update Java binding with cs_option by danghvu · 11 years ago
  55. 74d95ab python: minor fix for setup.py by Nguyen Anh Quynh · 11 years ago
  56. 4649071 python: add ERR_OPTION, and use @syntax setter/getter rather than option() method to set X86 syntax by Nguyen Anh Quynh · 11 years ago
  57. d912f91 add a newline between constant types in autogen constants by Nguyen Anh Quynh · 11 years ago
  58. a2f825f support comments in autogen files, so constant files are more friendly by Nguyen Anh Quynh · 11 years ago
  59. 8f13f3c rename @hex_code to @bytes, and move it to next to @size by Nguyen Anh Quynh · 11 years ago
  60. c45b158 Merge branch 'master' of https://github.com/joxeankoret/capstone into hexcode by Nguyen Anh Quynh · 11 years ago
  61. c9b6aa1 python: use c_char_p rather than POINTER(c_char) on prototype of cs_disasm_dyn() by Nguyen Anh Quynh · 11 years ago
  62. c389e00 python: wrong prototype for cs_close() causes mem leaking. bug reported by Joxean Koret by Nguyen Anh Quynh · 11 years ago
  63. b09c122 Use casting instead of isdigit, incase negative number by danghvu · 11 years ago
  64. b4b6fea Fix a bug const generator does not account for assigning number as enum const by danghvu · 11 years ago
  65. 367a4df Partially reverted previous commit by Joxean · 11 years ago
  66. 114df0e Added @hex_code member by Joxean · 11 years ago
  67. e60590b fix bindings to reflect the last commit by Nguyen Anh Quynh · 11 years ago
  68. ea5b79d move some alias registers around to after REG_MAX. this seems to fix some issues of clang, which struggles with enum that assign value from other enum by Nguyen Anh Quynh · 11 years ago
  69. b39ef0b arm: added some alias registers by Nguyen Anh Quynh · 11 years ago
  70. 67f1297 java: temporarily remove SYNTAX_ATT option due to the newly added cs_option() API. this will be fixed when cs_option() is supported in java by Nguyen Anh Quynh · 11 years ago
  71. e4229c6 merge with option branch by Nguyen Anh Quynh · 11 years ago
  72. c3a0a2c python: fix a memory leaking in cs_disasm_quick(). bug reported by Joxean Koret by Nguyen Anh Quynh · 11 years ago
  73. da8adad API cs_option(): @value now has size_t, so mapping opaque pointer is possible for future options by Nguyen Anh Quynh · 11 years ago
  74. 2c37cd4 Minor fix in java coding style by danghvu · 11 years ago
  75. 9e51977 Fix java binding to reflect new api by danghvu · 11 years ago
  76. c618db4 change option names for cs_option(), and update python binding accordingly to support new cs_option() by Nguyen Anh Quynh · 11 years ago
  77. daaed13 python: update to the newly added cs_option() API by Nguyen Anh Quynh · 11 years ago
  78. 88db228 bindings: do not delete constant files when on clean target of Makefile by Nguyen Anh Quynh · 11 years ago
  79. 22fcba1 java: add some missing CS_MODE by Nguyen Anh Quynh · 11 years ago
  80. de53660 java: quick fix to update it with latest API changes by Nguyen Anh Quynh · 11 years ago
  81. 75c4475 bindings: auto generate constants with 'make' by Nguyen Anh Quynh · 11 years ago
  82. 923d926 python: update to reflect latest API change by Nguyen Anh Quynh · 11 years ago
  83. 8db204e java: clean up Test.java by Nguyen Anh Quynh · 11 years ago
  84. 8eb689e python: update to reflect the last API change by Nguyen Anh Quynh · 11 years ago
  85. 25f5612 bindings: correct autogen constant files to reflect the change on arm64.h by Nguyen Anh Quynh · 11 years ago
  86. b2ed4dc update COMPILE and python README to reflect the last commit by Nguyen Anh Quynh · 11 years ago
  87. f459708 bindings: add all autogen files. better to do this by committers, not users. thanks to this, users dont need to generate those constants themselves by Nguyen Anh Quynh · 11 years ago
  88. 68f2405 java: update README by Nguyen Anh Quynh · 11 years ago
  89. e75f906 python: update README by Nguyen Anh Quynh · 11 years ago
  90. 210e94d python: add install target to Makefile by Nguyen Anh Quynh · 11 years ago
  91. 96a056d bindings: more flexible autogen on generating filenames containing constants by Nguyen Anh Quynh · 11 years ago
  92. bc1e2f4 python: 'make' alone does not install python module by Nguyen Anh Quynh · 11 years ago
  93. 99cfce9 bindings: add project info into autogen files by Nguyen Anh Quynh · 11 years ago
  94. d6ef46a bindings: Makefile does nothing by default by Nguyen Anh Quynh · 11 years ago
  95. ac6d1da bindings: add author info to const_generator.py by Nguyen Anh Quynh · 11 years ago
  96. c698fb6 Add clean target for bindings/Makefile by danghvu · 11 years ago
  97. cfb0120 Add support for python in const_generator.py by danghvu · 11 years ago
  98. 2f66688 Modify java binding to use the auto-generated files by danghvu · 11 years ago
  99. 9ed9d85 Name the target clearer in Makefile for testing binding by danghvu · 11 years ago
  100. 8054c9e Add a script to generate constant for binding by danghvu · 11 years ago