File tree 6 files changed +18
-12
lines changed
dotnet/UnicornManaged/Const
ruby/unicorn_gem/lib/unicorn_engine
6 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ module Common =
11
11
let UC_API_MINOR = 0
12
12
13
13
let UC_API_PATCH = 0
14
- let UC_API_EXTRA = 5
14
+ let UC_API_EXTRA = 6
15
15
let UC_VERSION_MAJOR = 2
16
16
17
17
let UC_VERSION_MINOR = 0
18
18
19
19
let UC_VERSION_PATCH = 0
20
- let UC_VERSION_EXTRA = 5
20
+ let UC_VERSION_EXTRA = 6
21
21
let UC_SECOND_SCALE = 1000000
22
22
let UC_MILISECOND_SCALE = 1000
23
23
let UC_ARCH_ARM = 1
@@ -38,6 +38,7 @@ module Common =
38
38
let UC_MODE_THUMB = 16
39
39
let UC_MODE_MCLASS = 32
40
40
let UC_MODE_V8 = 64
41
+ let UC_MODE_ARMBE8 = 128
41
42
let UC_MODE_ARM926 = 128
42
43
let UC_MODE_ARM946 = 256
43
44
let UC_MODE_ARM1176 = 512
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ const (
6
6
API_MINOR = 0
7
7
8
8
API_PATCH = 0
9
- API_EXTRA = 5
9
+ API_EXTRA = 6
10
10
VERSION_MAJOR = 2
11
11
12
12
VERSION_MINOR = 0
13
13
14
14
VERSION_PATCH = 0
15
- VERSION_EXTRA = 5
15
+ VERSION_EXTRA = 6
16
16
SECOND_SCALE = 1000000
17
17
MILISECOND_SCALE = 1000
18
18
ARCH_ARM = 1
@@ -33,6 +33,7 @@ const (
33
33
MODE_THUMB = 16
34
34
MODE_MCLASS = 32
35
35
MODE_V8 = 64
36
+ MODE_ARMBE8 = 128
36
37
MODE_ARM926 = 128
37
38
MODE_ARM946 = 256
38
39
MODE_ARM1176 = 512
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ public interface UnicornConst {
8
8
public static final int UC_API_MINOR = 0 ;
9
9
10
10
public static final int UC_API_PATCH = 0 ;
11
- public static final int UC_API_EXTRA = 5 ;
11
+ public static final int UC_API_EXTRA = 6 ;
12
12
public static final int UC_VERSION_MAJOR = 2 ;
13
13
14
14
public static final int UC_VERSION_MINOR = 0 ;
15
15
16
16
public static final int UC_VERSION_PATCH = 0 ;
17
- public static final int UC_VERSION_EXTRA = 5 ;
17
+ public static final int UC_VERSION_EXTRA = 6 ;
18
18
public static final int UC_SECOND_SCALE = 1000000 ;
19
19
public static final int UC_MILISECOND_SCALE = 1000 ;
20
20
public static final int UC_ARCH_ARM = 1 ;
@@ -35,6 +35,7 @@ public interface UnicornConst {
35
35
public static final int UC_MODE_THUMB = 16 ;
36
36
public static final int UC_MODE_MCLASS = 32 ;
37
37
public static final int UC_MODE_V8 = 64 ;
38
+ public static final int UC_MODE_ARMBE8 = 128 ;
38
39
public static final int UC_MODE_ARM926 = 128 ;
39
40
public static final int UC_MODE_ARM946 = 256 ;
40
41
public static final int UC_MODE_ARM1176 = 512 ;
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ interface
9
9
UC_API_MINOR = 0 ;
10
10
11
11
UC_API_PATCH = 0 ;
12
- UC_API_EXTRA = 5 ;
12
+ UC_API_EXTRA = 6 ;
13
13
UC_VERSION_MAJOR = 2 ;
14
14
15
15
UC_VERSION_MINOR = 0 ;
16
16
17
17
UC_VERSION_PATCH = 0 ;
18
- UC_VERSION_EXTRA = 5 ;
18
+ UC_VERSION_EXTRA = 6 ;
19
19
UC_SECOND_SCALE = 1000000 ;
20
20
UC_MILISECOND_SCALE = 1000 ;
21
21
UC_ARCH_ARM = 1 ;
@@ -36,6 +36,7 @@ interface
36
36
UC_MODE_THUMB = 16 ;
37
37
UC_MODE_MCLASS = 32 ;
38
38
UC_MODE_V8 = 64 ;
39
+ UC_MODE_ARMBE8 = 128 ;
39
40
UC_MODE_ARM926 = 128 ;
40
41
UC_MODE_ARM946 = 256 ;
41
42
UC_MODE_ARM1176 = 512 ;
Original file line number Diff line number Diff line change 4
4
UC_API_MINOR = 0
5
5
6
6
UC_API_PATCH = 0
7
- UC_API_EXTRA = 5
7
+ UC_API_EXTRA = 6
8
8
UC_VERSION_MAJOR = 2
9
9
10
10
UC_VERSION_MINOR = 0
11
11
12
12
UC_VERSION_PATCH = 0
13
- UC_VERSION_EXTRA = 5
13
+ UC_VERSION_EXTRA = 6
14
14
UC_SECOND_SCALE = 1000000
15
15
UC_MILISECOND_SCALE = 1000
16
16
UC_ARCH_ARM = 1
31
31
UC_MODE_THUMB = 16
32
32
UC_MODE_MCLASS = 32
33
33
UC_MODE_V8 = 64
34
+ UC_MODE_ARMBE8 = 128
34
35
UC_MODE_ARM926 = 128
35
36
UC_MODE_ARM946 = 256
36
37
UC_MODE_ARM1176 = 512
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ module UnicornEngine
6
6
UC_API_MINOR = 0
7
7
8
8
UC_API_PATCH = 0
9
- UC_API_EXTRA = 5
9
+ UC_API_EXTRA = 6
10
10
UC_VERSION_MAJOR = 2
11
11
12
12
UC_VERSION_MINOR = 0
13
13
14
14
UC_VERSION_PATCH = 0
15
- UC_VERSION_EXTRA = 5
15
+ UC_VERSION_EXTRA = 6
16
16
UC_SECOND_SCALE = 1000000
17
17
UC_MILISECOND_SCALE = 1000
18
18
UC_ARCH_ARM = 1
@@ -33,6 +33,7 @@ module UnicornEngine
33
33
UC_MODE_THUMB = 16
34
34
UC_MODE_MCLASS = 32
35
35
UC_MODE_V8 = 64
36
+ UC_MODE_ARMBE8 = 128
36
37
UC_MODE_ARM926 = 128
37
38
UC_MODE_ARM946 = 256
38
39
UC_MODE_ARM1176 = 512
You can’t perform that action at this time.
0 commit comments