1. 6ae5a63 update CREDITS by Nguyen Anh Quynh · 11 years ago
  2. 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
  3. b39ef0b arm: added some alias registers by Nguyen Anh Quynh · 11 years ago
  4. 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
  5. e4229c6 merge with option branch by Nguyen Anh Quynh · 11 years ago
  6. c3a0a2c python: fix a memory leaking in cs_disasm_quick(). bug reported by Joxean Koret by Nguyen Anh Quynh · 11 years ago
  7. 39da426 arm: fix a memory leaking bug by Nguyen Anh Quynh · 11 years ago
  8. 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
  9. 00dff9f Merge pull request #21 from danghvu/master by Nguyen Anh Quynh · 11 years ago
  10. 2c37cd4 Minor fix in java coding style by danghvu · 11 years ago
  11. 9e51977 Fix java binding to reflect new api by danghvu · 11 years ago
  12. c618db4 change option names for cs_option(), and update python binding accordingly to support new cs_option() by Nguyen Anh Quynh · 11 years ago
  13. b8ce68e change cs_option() API to be more flexible with option value by Nguyen Anh Quynh · 11 years ago
  14. daaed13 python: update to the newly added cs_option() API by Nguyen Anh Quynh · 11 years ago
  15. 4a60a56 handle cs_option() according to arch & mode by Nguyen Anh Quynh · 11 years ago
  16. 01aba00 add cs_option() API. move ATT & Intel syntax here, rather than having them as CS_MODE, which is wrong by Nguyen Anh Quynh · 11 years ago
  17. a5f0b1c mips: map register 9 to 'sp' rather than '29' by Nguyen Anh Quynh · 11 years ago
  18. 6d552e5 x86: fix bug in relative jump. reported by Joxean by Nguyen Anh Quynh · 11 years ago
  19. 3fa5314 update CREDITS by Nguyen Anh Quynh · 11 years ago
  20. 9cf170b mips: correct the forgotten size_t address in the last API change by Nguyen Anh Quynh · 11 years ago
  21. 5df9e4b tests: change variable address's type to uint64_t by Nguyen Anh Quynh · 11 years ago
  22. 88db228 bindings: do not delete constant files when on clean target of Makefile by Nguyen Anh Quynh · 11 years ago
  23. 22fcba1 java: add some missing CS_MODE by Nguyen Anh Quynh · 11 years ago
  24. de53660 java: quick fix to update it with latest API changes by Nguyen Anh Quynh · 11 years ago
  25. 7999c1f add capsone.pc to .gitignore by Nguyen Anh Quynh · 11 years ago
  26. 75c4475 bindings: auto generate constants with 'make' by Nguyen Anh Quynh · 11 years ago
  27. 923d926 python: update to reflect latest API change by Nguyen Anh Quynh · 11 years ago
  28. d330bf2 use PKG_{MAJOR|MINOR} to generate capstone.pc. besides, use dynamic lib rather than static lib for its 'Libs' by Nguyen Anh Quynh · 11 years ago
  29. 5dbe12a bump API to 1.5 due to the change in cs_disasm*(), and add PKG_{MAJOR|MINOR} for package version by Nguyen Anh Quynh · 11 years ago
  30. 7b7b40c tests: now @address is uint64_t, no need to typecast for PRIx64 anymore by Nguyen Anh Quynh · 11 years ago
  31. 612b5d2 consistently use same param name @address rather than @offset in all cs_disasm*() API by Nguyen Anh Quynh · 11 years ago
  32. f2a649e cs_insn.address also needs to be changed after the change on @offset of cs_disasm*() API by Nguyen Anh Quynh · 11 years ago
  33. 7d5f96d merge Radare's pull request on API change on @address of cs_disasm*() by Nguyen Anh Quynh · 11 years ago
  34. 029df20 add some comments referring to cs_errno() on failure of some APIs by Nguyen Anh Quynh · 11 years ago
  35. 8db204e java: clean up Test.java by Nguyen Anh Quynh · 11 years ago
  36. 8eb689e python: update to reflect the last API change by Nguyen Anh Quynh · 11 years ago
  37. 44ce0fb Generate and install capstone.pc pkg-config file by pancake · 11 years ago
  38. f35e2ad add @regs_read_count, @regs_write_count, @groups_count to @cs_insn. bump API to 1.4 by Nguyen Anh Quynh · 11 years ago
  39. c04f873 Use uint64_t instead of size_t for addresses by pancake · 11 years ago
  40. 25f5612 bindings: correct autogen constant files to reflect the change on arm64.h by Nguyen Anh Quynh · 11 years ago
  41. 3582bc1 arm64: ARM64_GRP_JUMP is in the wrong place. move it to its place and also clarify some GRP comments by Nguyen Anh Quynh · 11 years ago
  42. b2ed4dc update COMPILE and python README to reflect the last commit by Nguyen Anh Quynh · 11 years ago
  43. 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
  44. d57fa4f x86: added bunch of test insn (commented) by Nguyen Anh Quynh · 11 years ago
  45. 9c950c1 x86: fix all the shift rotate insns with 1 as immediate: shl, shr, sar, ror, rol. thus, removed the hack on this insns. by Nguyen Anh Quynh · 11 years ago
  46. 8fcec67 x86: do not sign-extend immediate. this fixes the issues reported by LongLD by Nguyen Anh Quynh · 11 years ago
  47. 2cd3370 some fixes for COMPILE by Nguyen Anh Quynh · 11 years ago
  48. 68f2405 java: update README by Nguyen Anh Quynh · 11 years ago
  49. e75f906 python: update README by Nguyen Anh Quynh · 11 years ago
  50. 210e94d python: add install target to Makefile by Nguyen Anh Quynh · 11 years ago
  51. 676cabd update instructions in COMPILE about compiling/installing bindings before usage by Nguyen Anh Quynh · 11 years ago
  52. 96a056d bindings: more flexible autogen on generating filenames containing constants by Nguyen Anh Quynh · 11 years ago
  53. bc1e2f4 python: 'make' alone does not install python module by Nguyen Anh Quynh · 11 years ago
  54. 99cfce9 bindings: add project info into autogen files by Nguyen Anh Quynh · 11 years ago
  55. d6ef46a bindings: Makefile does nothing by default by Nguyen Anh Quynh · 11 years ago
  56. ac6d1da bindings: add author info to const_generator.py by Nguyen Anh Quynh · 11 years ago
  57. d1f1e87 Merge branch 'master' of https://github.com/danghvu/capstone into autogen by Nguyen Anh Quynh · 11 years ago
  58. 23bc1f3 fix some potential format string bugs in arm64, arm & mips by Nguyen Anh Quynh · 11 years ago
  59. b9b3d29 x86: print segment register in some insns with memory references. This fixes the bug reported by Edgar & Attila by Nguyen Anh Quynh · 11 years ago
  60. ec0ed8e semantics: add insn group JUMP, so now we can check if this insn is branching by Nguyen Anh Quynh · 11 years ago
  61. 7c7a8bc arm: move static variable ITBlock to cs_struct, so make arm code truly thread-safe by Nguyen Anh Quynh · 11 years ago
  62. f1c2eee x86: clang still complains on unused enum type. this shuts it up by Nguyen Anh Quynh · 11 years ago
  63. 0e3defb arm64: remove asprintf.c and use static buffer instead for SysRegMapper_toString(). this fixes the bug on MSR insn reported by Patroklos Argyroudis by Nguyen Anh Quynh · 11 years ago
  64. c698fb6 Add clean target for bindings/Makefile by danghvu · 11 years ago
  65. cfb0120 Add support for python in const_generator.py by danghvu · 11 years ago
  66. 2f66688 Modify java binding to use the auto-generated files by danghvu · 11 years ago
  67. 9ed9d85 Name the target clearer in Makefile for testing binding by danghvu · 11 years ago
  68. 8054c9e Add a script to generate constant for binding by danghvu · 11 years ago
  69. c881b0c update CREDITS by Nguyen Anh Quynh · 11 years ago
  70. 524194a test: add few (commented out) arm instructions to test_arm.c by Nguyen Anh Quynh · 11 years ago
  71. bc38a28 test: add some more insn to test_arm.c (commented out code) by Nguyen Anh Quynh · 11 years ago
  72. 5ef8b2a arm: fix param of MCRegisterInfo_InitMCRegisterInfo() in ARM_init() by Nguyen Anh Quynh · 11 years ago
  73. 257dfb6 arm: fix wrong calculation on update_flags due to dropped support for cs_reg_write() with 0 as handle by Nguyen Anh Quynh · 11 years ago
  74. 173ed2b arm: upgrade core engine by Nguyen Anh Quynh · 11 years ago
  75. cc6cf65 tests: add some test insn (commented) by Nguyen Anh Quynh · 11 years ago
  76. 270d8ae Merge branch 'master' into x86 by Nguyen Anh Quynh · 11 years ago
  77. 3640f3c clarify in capstone.h that no API accepts CS_ARCH_* as handle anymore by Nguyen Anh Quynh · 11 years ago
  78. 45078f8 finally drop ugly support for using arch as handle in cs_reg_name(). this doesnt change API by Nguyen Anh Quynh · 11 years ago
  79. 36d143b x86: update core engine by Nguyen Anh Quynh · 11 years ago
  80. ad61c49 arm64: handle decomposer properly for alias insn by Nguyen Anh Quynh · 11 years ago
  81. e1611f0 arm64: fix wrong calculation of arm64.update_flags with a tricky way of using cs_reg_write() by Nguyen Anh Quynh · 11 years ago
  82. 6b9b664 arm64: support more alias insn by Nguyen Anh Quynh · 11 years ago
  83. 0fd5da2 fixed bad disassembly mode definitions. by Daniel Godas-Lopez by Nguyen Anh Quynh · 11 years ago
  84. 20b2d80 Improved performance of java binding by danghvu · 11 years ago
  85. f9dc082 Merge remote-tracking branch 'upstream/master' by danghvu · 11 years ago
  86. bfd2de6 Fix Arm64.java miss type by danghvu · 11 years ago
  87. a7d954f Adjust binding tests to match api changes by danghvu · 11 years ago
  88. 6b7abe3 arm64: handle alias insn in a better way, and add support for MNEG. bug reported by Patroklos Argyroudis by Nguyen Anh Quynh · 11 years ago
  89. 81d35e6 Merge branch 'master' of https://github.com/aquynh/capstone by Nguyen Anh Quynh · 11 years ago
  90. 723687e tests: typecast size_t to uint64_t for printf, since MingW doesnt support zu specifier by Nguyen Anh Quynh · 11 years ago
  91. 56398be Merge pull request #14 from d1g1t4l/clean_all by Nguyen Anh Quynh · 11 years ago
  92. 9286504 now the clean target deletes all binaries from all targets by Daniel Godas-Lopez · 11 years ago
  93. f1656de reduce the size of @operands for arm & arm64 by Nguyen Anh Quynh · 11 years ago
  94. bbd4131 python: more fixes, so this works on x86 by Nguyen Anh Quynh · 11 years ago
  95. 774f54f python: fix capstone.py to reflect new change in cs_disasm_dyn() by Nguyen Anh Quynh · 11 years ago
  96. affea2f python: fix code to reflect last API changes by Nguyen Anh Quynh · 11 years ago
  97. 90acea3 fix arm64_op_mem & arm64_op_type structures: int32_t is enough for imm & disp by Nguyen Anh Quynh · 11 years ago
  98. 402f3fc bump API to 1.3 by Nguyen Anh Quynh · 11 years ago
  99. b42a657 change cs_disasm() and cs_disasm_dyn() to be portable API. fix related code using these API by Nguyen Anh Quynh · 11 years ago
  100. 0b6f1bd x86: fix SHR, SHL, SAR insn when second op is 1 (Intel syntax). reported by Edgar Barbosa by Nguyen Anh Quynh · 11 years ago