File tree 20 files changed +41
-27
lines changed
ruby/unicorn_gem/lib/unicorn_engine
20 files changed +41
-27
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " unicorn-engine"
3
- version = " 2.1.2 "
3
+ version = " 2.1.3 "
4
4
authors = [" Ziqiao Kong" , " Lukas Seidel" ]
5
5
documentation = " https://github.com/unicorn-engine/unicorn/wiki"
6
6
edition = " 2021"
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ open System
8
8
module Common =
9
9
let UC_API_MAJOR = 2
10
10
let UC_API_MINOR = 1
11
- let UC_API_PATCH = 2
11
+ let UC_API_PATCH = 3
12
12
let UC_API_EXTRA = 255
13
13
let UC_VERSION_MAJOR = 2
14
14
let UC_VERSION_MINOR = 1
15
- let UC_VERSION_PATCH = 2
15
+ let UC_VERSION_PATCH = 3
16
16
let UC_VERSION_EXTRA = 255
17
17
let UC_SECOND_SCALE = 1000000
18
18
let UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change @@ -198,7 +198,9 @@ module Mips =
198
198
let UC_MIPS_REG_CP0_CONFIG3 = 137
199
199
let UC_MIPS_REG_CP0_USERLOCAL = 138
200
200
let UC_MIPS_REG_CP0_STATUS = 139
201
- let UC_MIPS_REG_ENDING = 140
201
+ let UC_MIPS_REG_FIR = 140
202
+ let UC_MIPS_REG_FCSR = 141
203
+ let UC_MIPS_REG_ENDING = 142
202
204
let UC_MIPS_REG_ZERO = 2
203
205
let UC_MIPS_REG_AT = 3
204
206
let UC_MIPS_REG_V0 = 4
Original file line number Diff line number Diff line change 6
6
<Copyright >Copyright © Antonio Parata 2016</Copyright >
7
7
<RepositoryUrl >https://github.com/unicorn-engine/unicorn</RepositoryUrl >
8
8
<PackageDescription >.NET bindings for unicorn</PackageDescription >
9
- <VersionPrefix >2.1.2 </VersionPrefix >
9
+ <VersionPrefix >2.1.3 </VersionPrefix >
10
10
<VersionSuffix >$(VersionSuffix)</VersionSuffix >
11
11
<ProjectGuid >0c21f1c1-2725-4a46-9022-1905f85822a5</ProjectGuid >
12
12
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
Original file line number Diff line number Diff line change 6
6
<AssemblyName >UnicornSamples</AssemblyName >
7
7
<Copyright >Copyright © Antonio Parata 2016</Copyright >
8
8
<RepositoryUrl >https://github.com/unicorn-engine/unicorn</RepositoryUrl >
9
- <Version >2.1.2 </Version >
9
+ <Version >2.1.3 </Version >
10
10
<ProjectGuid >{B80B5987-1E24-4309-8BF9-C4F91270F21C}</ProjectGuid >
11
11
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
12
12
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -193,7 +193,9 @@ const (
193
193
MIPS_REG_CP0_CONFIG3 = 137
194
194
MIPS_REG_CP0_USERLOCAL = 138
195
195
MIPS_REG_CP0_STATUS = 139
196
- MIPS_REG_ENDING = 140
196
+ MIPS_REG_FIR = 140
197
+ MIPS_REG_FCSR = 141
198
+ MIPS_REG_ENDING = 142
197
199
MIPS_REG_ZERO = 2
198
200
MIPS_REG_AT = 3
199
201
MIPS_REG_V0 = 4
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ package unicorn
3
3
const (
4
4
API_MAJOR = 2
5
5
API_MINOR = 1
6
- API_PATCH = 2
6
+ API_PATCH = 3
7
7
API_EXTRA = 255
8
8
VERSION_MAJOR = 2
9
9
VERSION_MINOR = 1
10
- VERSION_PATCH = 2
10
+ VERSION_PATCH = 3
11
11
VERSION_EXTRA = 255
12
12
SECOND_SCALE = 1000000
13
13
MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.unicorn-engine</groupId >
8
8
<artifactId >unicorn</artifactId >
9
- <version >2.1.2 </version >
9
+ <version >2.1.3 </version >
10
10
11
11
<name >unicorn</name >
12
12
<url >https://www.unicorn-engine.org</url >
Original file line number Diff line number Diff line change @@ -195,7 +195,9 @@ public interface MipsConst {
195
195
public static final int UC_MIPS_REG_CP0_CONFIG3 = 137 ;
196
196
public static final int UC_MIPS_REG_CP0_USERLOCAL = 138 ;
197
197
public static final int UC_MIPS_REG_CP0_STATUS = 139 ;
198
- public static final int UC_MIPS_REG_ENDING = 140 ;
198
+ public static final int UC_MIPS_REG_FIR = 140 ;
199
+ public static final int UC_MIPS_REG_FCSR = 141 ;
200
+ public static final int UC_MIPS_REG_ENDING = 142 ;
199
201
public static final int UC_MIPS_REG_ZERO = 2 ;
200
202
public static final int UC_MIPS_REG_AT = 3 ;
201
203
public static final int UC_MIPS_REG_V0 = 4 ;
Original file line number Diff line number Diff line change 5
5
public interface UnicornConst {
6
6
public static final int UC_API_MAJOR = 2 ;
7
7
public static final int UC_API_MINOR = 1 ;
8
- public static final int UC_API_PATCH = 2 ;
8
+ public static final int UC_API_PATCH = 3 ;
9
9
public static final int UC_API_EXTRA = 255 ;
10
10
public static final int UC_VERSION_MAJOR = 2 ;
11
11
public static final int UC_VERSION_MINOR = 1 ;
12
- public static final int UC_VERSION_PATCH = 2 ;
12
+ public static final int UC_VERSION_PATCH = 3 ;
13
13
public static final int UC_VERSION_EXTRA = 255 ;
14
14
public static final int UC_SECOND_SCALE = 1000000 ;
15
15
public static final int UC_MILISECOND_SCALE = 1000 ;
Original file line number Diff line number Diff line change @@ -196,7 +196,9 @@ interface
196
196
UC_MIPS_REG_CP0_CONFIG3 = 137 ;
197
197
UC_MIPS_REG_CP0_USERLOCAL = 138 ;
198
198
UC_MIPS_REG_CP0_STATUS = 139 ;
199
- UC_MIPS_REG_ENDING = 140 ;
199
+ UC_MIPS_REG_FIR = 140 ;
200
+ UC_MIPS_REG_FCSR = 141 ;
201
+ UC_MIPS_REG_ENDING = 142 ;
200
202
UC_MIPS_REG_ZERO = 2 ;
201
203
UC_MIPS_REG_AT = 3 ;
202
204
UC_MIPS_REG_V0 = 4 ;
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ interface
6
6
7
7
const UC_API_MAJOR = 2 ;
8
8
UC_API_MINOR = 1 ;
9
- UC_API_PATCH = 2 ;
9
+ UC_API_PATCH = 3 ;
10
10
UC_API_EXTRA = 255 ;
11
11
UC_VERSION_MAJOR = 2 ;
12
12
UC_VERSION_MINOR = 1 ;
13
- UC_VERSION_PATCH = 2 ;
13
+ UC_VERSION_PATCH = 3 ;
14
14
UC_VERSION_EXTRA = 255 ;
15
15
UC_SECOND_SCALE = 1000000 ;
16
16
UC_MILISECOND_SCALE = 1000 ;
Original file line number Diff line number Diff line change 191
191
UC_MIPS_REG_CP0_CONFIG3 = 137
192
192
UC_MIPS_REG_CP0_USERLOCAL = 138
193
193
UC_MIPS_REG_CP0_STATUS = 139
194
- UC_MIPS_REG_ENDING = 140
194
+ UC_MIPS_REG_FIR = 140
195
+ UC_MIPS_REG_FCSR = 141
196
+ UC_MIPS_REG_ENDING = 142
195
197
UC_MIPS_REG_ZERO = 2
196
198
UC_MIPS_REG_AT = 3
197
199
UC_MIPS_REG_V0 = 4
Original file line number Diff line number Diff line change 1
1
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [unicorn_const.py]
2
2
UC_API_MAJOR = 2
3
3
UC_API_MINOR = 1
4
- UC_API_PATCH = 2
4
+ UC_API_PATCH = 3
5
5
UC_API_EXTRA = 255
6
6
UC_VERSION_MAJOR = 2
7
7
UC_VERSION_MINOR = 1
8
- UC_VERSION_PATCH = 2
8
+ UC_VERSION_PATCH = 3
9
9
UC_VERSION_EXTRA = 255
10
10
UC_SECOND_SCALE = 1000000
11
11
UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change @@ -193,7 +193,9 @@ module UnicornEngine
193
193
UC_MIPS_REG_CP0_CONFIG3 = 137
194
194
UC_MIPS_REG_CP0_USERLOCAL = 138
195
195
UC_MIPS_REG_CP0_STATUS = 139
196
- UC_MIPS_REG_ENDING = 140
196
+ UC_MIPS_REG_FIR = 140
197
+ UC_MIPS_REG_FCSR = 141
198
+ UC_MIPS_REG_ENDING = 142
197
199
UC_MIPS_REG_ZERO = 2
198
200
UC_MIPS_REG_AT = 3
199
201
UC_MIPS_REG_V0 = 4
Original file line number Diff line number Diff line change 3
3
module UnicornEngine
4
4
UC_API_MAJOR = 2
5
5
UC_API_MINOR = 1
6
- UC_API_PATCH = 2
6
+ UC_API_PATCH = 3
7
7
UC_API_EXTRA = 255
8
8
UC_VERSION_MAJOR = 2
9
9
UC_VERSION_MINOR = 1
10
- UC_VERSION_PATCH = 2
10
+ UC_VERSION_PATCH = 3
11
11
UC_VERSION_EXTRA = 255
12
12
UC_SECOND_SCALE = 1000000
13
13
UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change @@ -193,7 +193,9 @@ pub const mipsConst = enum(c_int) {
193
193
MIPS_REG_CP0_CONFIG3 = 137 ,
194
194
MIPS_REG_CP0_USERLOCAL = 138 ,
195
195
MIPS_REG_CP0_STATUS = 139 ,
196
- MIPS_REG_ENDING = 140 ,
196
+ MIPS_REG_FIR = 140 ,
197
+ MIPS_REG_FCSR = 141 ,
198
+ MIPS_REG_ENDING = 142 ,
197
199
MIPS_REG_ZERO = 2 ,
198
200
MIPS_REG_AT = 3 ,
199
201
MIPS_REG_V0 = 4 ,
Original file line number Diff line number Diff line change 3
3
pub const unicornConst = enum (c_int ) {
4
4
API_MAJOR = 2 ,
5
5
API_MINOR = 1 ,
6
- API_PATCH = 2 ,
6
+ API_PATCH = 3 ,
7
7
API_EXTRA = 255 ,
8
8
VERSION_MAJOR = 2 ,
9
9
VERSION_MINOR = 1 ,
10
- VERSION_PATCH = 2 ,
10
+ VERSION_PATCH = 3 ,
11
11
VERSION_EXTRA = 255 ,
12
12
SECOND_SCALE = 1000000 ,
13
13
MILISECOND_SCALE = 1000 ,
Original file line number Diff line number Diff line change 1
1
.{
2
2
.name = "unicorn" ,
3
- .version = "2.1.2 " ,
3
+ .version = "2.1.3 " ,
4
4
.paths = .{"" },
5
5
}
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ typedef size_t uc_hook;
72
72
// Unicorn API version
73
73
#define UC_API_MAJOR 2
74
74
#define UC_API_MINOR 1
75
- #define UC_API_PATCH 2
75
+ #define UC_API_PATCH 3
76
76
// Release candidate version, 255 means the official release.
77
77
#define UC_API_EXTRA 255
78
78
You can’t perform that action at this time.
0 commit comments