diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index a8b85414..9134f906 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -11,13 +11,13 @@ module Common = let UC_API_MINOR = 0 let UC_API_PATCH = 0 - let UC_API_EXTRA = 5 + let UC_API_EXTRA = 6 let UC_VERSION_MAJOR = 2 let UC_VERSION_MINOR = 0 let UC_VERSION_PATCH = 0 - let UC_VERSION_EXTRA = 5 + let UC_VERSION_EXTRA = 6 let UC_SECOND_SCALE = 1000000 let UC_MILISECOND_SCALE = 1000 let UC_ARCH_ARM = 1 @@ -38,6 +38,7 @@ module Common = let UC_MODE_THUMB = 16 let UC_MODE_MCLASS = 32 let UC_MODE_V8 = 64 + let UC_MODE_ARMBE8 = 128 let UC_MODE_ARM926 = 128 let UC_MODE_ARM946 = 256 let UC_MODE_ARM1176 = 512 diff --git a/bindings/go/unicorn/unicorn_const.go b/bindings/go/unicorn/unicorn_const.go index 052cdd1d..c0dcfa28 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -6,13 +6,13 @@ const ( API_MINOR = 0 API_PATCH = 0 - API_EXTRA = 5 + API_EXTRA = 6 VERSION_MAJOR = 2 VERSION_MINOR = 0 VERSION_PATCH = 0 - VERSION_EXTRA = 5 + VERSION_EXTRA = 6 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 ARCH_ARM = 1 @@ -33,6 +33,7 @@ const ( MODE_THUMB = 16 MODE_MCLASS = 32 MODE_V8 = 64 + MODE_ARMBE8 = 128 MODE_ARM926 = 128 MODE_ARM946 = 256 MODE_ARM1176 = 512 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 4d8554f6..cc2b66d3 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -8,13 +8,13 @@ public interface UnicornConst { public static final int UC_API_MINOR = 0; public static final int UC_API_PATCH = 0; - public static final int UC_API_EXTRA = 5; + public static final int UC_API_EXTRA = 6; public static final int UC_VERSION_MAJOR = 2; public static final int UC_VERSION_MINOR = 0; public static final int UC_VERSION_PATCH = 0; - public static final int UC_VERSION_EXTRA = 5; + public static final int UC_VERSION_EXTRA = 6; public static final int UC_SECOND_SCALE = 1000000; public static final int UC_MILISECOND_SCALE = 1000; public static final int UC_ARCH_ARM = 1; @@ -35,6 +35,7 @@ public interface UnicornConst { public static final int UC_MODE_THUMB = 16; public static final int UC_MODE_MCLASS = 32; public static final int UC_MODE_V8 = 64; + public static final int UC_MODE_ARMBE8 = 128; public static final int UC_MODE_ARM926 = 128; public static final int UC_MODE_ARM946 = 256; public static final int UC_MODE_ARM1176 = 512; diff --git a/bindings/pascal/unicorn/UnicornConst.pas b/bindings/pascal/unicorn/UnicornConst.pas index 4ae08515..5306d8f8 100644 --- a/bindings/pascal/unicorn/UnicornConst.pas +++ b/bindings/pascal/unicorn/UnicornConst.pas @@ -9,13 +9,13 @@ const UC_API_MAJOR = 2; UC_API_MINOR = 0; UC_API_PATCH = 0; - UC_API_EXTRA = 5; + UC_API_EXTRA = 6; UC_VERSION_MAJOR = 2; UC_VERSION_MINOR = 0; UC_VERSION_PATCH = 0; - UC_VERSION_EXTRA = 5; + UC_VERSION_EXTRA = 6; UC_SECOND_SCALE = 1000000; UC_MILISECOND_SCALE = 1000; UC_ARCH_ARM = 1; @@ -36,6 +36,7 @@ const UC_API_MAJOR = 2; UC_MODE_THUMB = 16; UC_MODE_MCLASS = 32; UC_MODE_V8 = 64; + UC_MODE_ARMBE8 = 128; UC_MODE_ARM926 = 128; UC_MODE_ARM946 = 256; UC_MODE_ARM1176 = 512; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 1737a2c8..573a043c 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -4,13 +4,13 @@ UC_API_MAJOR = 2 UC_API_MINOR = 0 UC_API_PATCH = 0 -UC_API_EXTRA = 5 +UC_API_EXTRA = 6 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 UC_VERSION_PATCH = 0 -UC_VERSION_EXTRA = 5 +UC_VERSION_EXTRA = 6 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 @@ -31,6 +31,7 @@ UC_MODE_ARM = 0 UC_MODE_THUMB = 16 UC_MODE_MCLASS = 32 UC_MODE_V8 = 64 +UC_MODE_ARMBE8 = 128 UC_MODE_ARM926 = 128 UC_MODE_ARM946 = 256 UC_MODE_ARM1176 = 512 diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb index e12c7be4..794bc16b 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb @@ -6,13 +6,13 @@ module UnicornEngine UC_API_MINOR = 0 UC_API_PATCH = 0 - UC_API_EXTRA = 5 + UC_API_EXTRA = 6 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 UC_VERSION_PATCH = 0 - UC_VERSION_EXTRA = 5 + UC_VERSION_EXTRA = 6 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 @@ -33,6 +33,7 @@ module UnicornEngine UC_MODE_THUMB = 16 UC_MODE_MCLASS = 32 UC_MODE_V8 = 64 + UC_MODE_ARMBE8 = 128 UC_MODE_ARM926 = 128 UC_MODE_ARM946 = 256 UC_MODE_ARM1176 = 512