Skip to content
Snippets Groups Projects
Commit 0c56ef96 authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

bindings: support RADIX16 syntax added to the core in the last commit

parent eac9cc9d
No related branches found
No related tags found
No related merge requests found
......@@ -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 (
......
......@@ -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
......@@ -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
......@@ -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
......@@ -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,
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment