- Aug 02, 2019
-
-
Jinmo authored
-
- Mar 30, 2018
-
-
Nguyen Anh Quynh authored
-
- Mar 12, 2018
-
-
Michael Mohr authored
-
- Nov 29, 2017
-
-
Segev Finer authored
When enabled, the assembled code will be returned as bytes (str on Python 2) instead of a list of integers, this is more memory efficient, faster (It's created using ctypes.string_at instead of a loop in Python), and more convenient since that's the type that most code that works with bytes in Python expects (That includes capstone). Defaults to `False` for backwards compatibility, since changing the return type is a breaking change.
-
- Oct 24, 2017
-
-
hongxu authored
using `data_files` dict prefixed with `SITE_PACKAGES = os.path.join(get_python_lib(), "keystone")` is not portable, see #235 and #297 for details. Regular setup configuration does not work, e.g., specifying `package_data` etc, since that only affects `sdist`. The fix is a hack: customize `install_lib` to explicitly copy the file into keystone install dir.
-
- Oct 25, 2016
-
-
Nguyen Anh Quynh authored
-
- Oct 13, 2016
-
-
Nguyen Anh Quynh authored
-
- Oct 02, 2016
-
-
Nguyen Anh Quynh authored
update bindings to add KS_OPT_SYM_RESOLVER. Python binding now supports this option. see sample.py for example
-
- Sep 10, 2016
-
-
Nguyen Anh Quynh authored
-
- Sep 09, 2016
-
-
Nguyen Anh Quynh authored
-
- Sep 01, 2016
-
-
Nguyen Anh Quynh authored
-
- Aug 01, 2016
-
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
-
- Jul 27, 2016
-
-
Nguyen Anh Quynh authored
-
- Jul 26, 2016
-
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
-
- Jul 17, 2016
-
-
Nguyen Anh Quynh authored
-
- Jul 14, 2016
-
-
Nguyen Anh Quynh authored
-
- Jun 17, 2016
-
-
Sascha Schirra authored
-
- Jun 05, 2016
-
-
Adrian Herrera authored
* ks_free: The 'p' argument should have type unsigned char* to match the type of the 'encoding' argument to ks_asm
-
Nguyen Anh Quynh authored
-
- May 31, 2016
-
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
-
- May 30, 2016
-
-
Nguyen Anh Quynh authored
-
Remco authored
-
- May 29, 2016
-
-
Nguyen Anh Quynh authored
handle equal directive. this fixes c-crashes/crash-12-x64-cannot-set-a-variable-that-has-already-been-used.c
-
Nguyen Anh Quynh authored
handle error in applyFixup(). this fixes c-crashes/crash-23-x64-value-does-not-fit-in-the-fixup-field.c
-
Nguyen Anh Quynh authored
x86: report unsupported instructions in encodeInstruction(). this fixes c-crashes/crash-24-x64-not-is16bitmemoperand.c
-
Nguyen Anh Quynh authored
-
- May 28, 2016
-
-
Nguyen Anh Quynh authored
-
- May 24, 2016
-
-
Ingmar Steen authored
-
- May 22, 2016
-
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
-
- May 17, 2016
-
-
Nguyen Anh Quynh authored
-
Nguyen Anh Quynh authored
propagate the error of missing symbol back to ks_asm(). this adds new error code KS_ERR_ASM_SYMBOL_NOTFOUND. fix issue #61
-
Nguyen Anh Quynh authored
add error code KS_ERR_ASM_SYMBOL_REDEFINED to report redefined symbols. also updated all the bindings after this
-
- May 14, 2016
-
-
Nguyen Anh Quynh authored
-
- Apr 30, 2016
-
-
Nguyen Anh Quynh authored
-
Sébastien Duquette authored
-