Skip to content

Commit 1ec1352

Browse files
committed
bindings: update consts
1 parent 492cdfe commit 1ec1352

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

bindings/dotnet/UnicornManaged/Const/Common.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ module Common =
3939
let UC_MODE_THUMB = 16
4040
let UC_MODE_MCLASS = 32
4141
let UC_MODE_V8 = 64
42+
let UC_MODE_ARMBE8 = 1024
4243
let UC_MODE_ARM926 = 128
4344
let UC_MODE_ARM946 = 256
4445
let UC_MODE_ARM1176 = 512
45-
let UC_MODE_ARMBE8 = 1024
4646
let UC_MODE_MICRO = 16
4747
let UC_MODE_MIPS3 = 32
4848
let UC_MODE_MIPS32R6 = 64

bindings/go/unicorn/unicorn_const.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ const (
3434
MODE_THUMB = 16
3535
MODE_MCLASS = 32
3636
MODE_V8 = 64
37+
MODE_ARMBE8 = 1024
3738
MODE_ARM926 = 128
3839
MODE_ARM946 = 256
3940
MODE_ARM1176 = 512
40-
MODE_ARMBE8 = 1024
4141
MODE_MICRO = 16
4242
MODE_MIPS3 = 32
4343
MODE_MIPS32R6 = 64

bindings/java/unicorn/UnicornConst.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ public interface UnicornConst {
3636
public static final int UC_MODE_THUMB = 16;
3737
public static final int UC_MODE_MCLASS = 32;
3838
public static final int UC_MODE_V8 = 64;
39+
public static final int UC_MODE_ARMBE8 = 1024;
3940
public static final int UC_MODE_ARM926 = 128;
4041
public static final int UC_MODE_ARM946 = 256;
4142
public static final int UC_MODE_ARM1176 = 512;
42-
public static final int UC_MODE_ARMBE8 = 1024;
4343
public static final int UC_MODE_MICRO = 16;
4444
public static final int UC_MODE_MIPS3 = 32;
4545
public static final int UC_MODE_MIPS32R6 = 64;

bindings/pascal/unicorn/UnicornConst.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ interface
3737
UC_MODE_THUMB = 16;
3838
UC_MODE_MCLASS = 32;
3939
UC_MODE_V8 = 64;
40+
UC_MODE_ARMBE8 = 1024;
4041
UC_MODE_ARM926 = 128;
4142
UC_MODE_ARM946 = 256;
4243
UC_MODE_ARM1176 = 512;
43-
UC_MODE_ARMBE8 = 1024;
4444
UC_MODE_MICRO = 16;
4545
UC_MODE_MIPS3 = 32;
4646
UC_MODE_MIPS32R6 = 64;

bindings/python/unicorn/unicorn_const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
UC_MODE_THUMB = 16
3333
UC_MODE_MCLASS = 32
3434
UC_MODE_V8 = 64
35+
UC_MODE_ARMBE8 = 1024
3536
UC_MODE_ARM926 = 128
3637
UC_MODE_ARM946 = 256
3738
UC_MODE_ARM1176 = 512
38-
UC_MODE_ARMBE8 = 1024
3939
UC_MODE_MICRO = 16
4040
UC_MODE_MIPS3 = 32
4141
UC_MODE_MIPS32R6 = 64

bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ module UnicornEngine
3434
UC_MODE_THUMB = 16
3535
UC_MODE_MCLASS = 32
3636
UC_MODE_V8 = 64
37+
UC_MODE_ARMBE8 = 1024
3738
UC_MODE_ARM926 = 128
3839
UC_MODE_ARM946 = 256
3940
UC_MODE_ARM1176 = 512
40-
UC_MODE_ARMBE8 = 1024
4141
UC_MODE_MICRO = 16
4242
UC_MODE_MIPS3 = 32
4343
UC_MODE_MIPS32R6 = 64

0 commit comments

Comments
 (0)