From 0c56ef96ebaefdf2ec134f659ecb92daaee24452 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh <aquynh@gmail.com> Date: Sat, 10 Sep 2016 02:05:57 +0800 Subject: [PATCH] bindings: support RADIX16 syntax added to the core in the last commit --- bindings/go/keystone/keystone_const.go | 1 + bindings/nodejs/consts/keystone.js | 1 + bindings/python/keystone/keystone_const.py | 1 + bindings/ruby/keystone_gem/lib/keystone/keystone_const.rb | 1 + bindings/rust/src/keystone_const.rs | 1 + 5 files changed, 5 insertions(+) diff --git a/bindings/go/keystone/keystone_const.go b/bindings/go/keystone/keystone_const.go index 25934b1..7768d1a 100644 --- a/bindings/go/keystone/keystone_const.go +++ b/bindings/go/keystone/keystone_const.go @@ -50,6 +50,7 @@ const ( OPT_SYNTAX_NASM OptionValue = 4 OPT_SYNTAX_MASM OptionValue = 8 OPT_SYNTAX_GAS OptionValue = 16 + OPT_SYNTAX_RADIX16 OptionValue = 32 ) const ( diff --git a/bindings/nodejs/consts/keystone.js b/bindings/nodejs/consts/keystone.js index 5647775..a077580 100644 --- a/bindings/nodejs/consts/keystone.js +++ b/bindings/nodejs/consts/keystone.js @@ -83,3 +83,4 @@ module.exports.OPT_SYNTAX_ATT = 2 module.exports.OPT_SYNTAX_NASM = 4 module.exports.OPT_SYNTAX_MASM = 8 module.exports.OPT_SYNTAX_GAS = 16 +module.exports.OPT_SYNTAX_RADIX16 = 32 diff --git a/bindings/python/keystone/keystone_const.py b/bindings/python/keystone/keystone_const.py index f11f25d..d818037 100644 --- a/bindings/python/keystone/keystone_const.py +++ b/bindings/python/keystone/keystone_const.py @@ -83,3 +83,4 @@ KS_OPT_SYNTAX_ATT = 2 KS_OPT_SYNTAX_NASM = 4 KS_OPT_SYNTAX_MASM = 8 KS_OPT_SYNTAX_GAS = 16 +KS_OPT_SYNTAX_RADIX16 = 32 diff --git a/bindings/ruby/keystone_gem/lib/keystone/keystone_const.rb b/bindings/ruby/keystone_gem/lib/keystone/keystone_const.rb index 9fa6e66..fa427c2 100644 --- a/bindings/ruby/keystone_gem/lib/keystone/keystone_const.rb +++ b/bindings/ruby/keystone_gem/lib/keystone/keystone_const.rb @@ -85,4 +85,5 @@ module Keystone KS_OPT_SYNTAX_NASM = 4 KS_OPT_SYNTAX_MASM = 8 KS_OPT_SYNTAX_GAS = 16 + KS_OPT_SYNTAX_RADIX16 = 32 end \ No newline at end of file diff --git a/bindings/rust/src/keystone_const.rs b/bindings/rust/src/keystone_const.rs index 04c61cb..5835797 100644 --- a/bindings/rust/src/keystone_const.rs +++ b/bindings/rust/src/keystone_const.rs @@ -93,6 +93,7 @@ bitflags! { const OPT_SYNTAX_NASM = 4, const OPT_SYNTAX_MASM = 8, const OPT_SYNTAX_GAS = 16, + const OPT_SYNTAX_RADIX16 = 32, } } -- GitLab