File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
use bitflags:: bitflags;
3
3
4
4
pub const API_MAJOR : u64 = 2 ;
5
- pub const API_MINOR : u64 = 0 ;
5
+ pub const API_MINOR : u64 = 1 ;
6
6
pub const VERSION_MAJOR : u64 = 2 ;
7
- pub const VERSION_MINOR : u64 = 0 ;
8
- pub const VERSION_PATCH : u64 = 0 ;
9
- pub const VERSION_EXTRA : u64 = 7 ;
7
+ pub const VERSION_MINOR : u64 = 1 ;
8
+ pub const VERSION_PATCH : u64 = 3 ;
9
+ pub const VERSION_EXTRA : u64 = 255 ;
10
10
pub const SECOND_SCALE : u64 = 1_000_000 ;
11
11
pub const MILISECOND_SCALE : u64 = 1_000 ;
12
12
@@ -127,7 +127,8 @@ bitflags! {
127
127
const MEM_INVALID = Self :: MEM_READ_INVALID . bits( ) | Self :: MEM_WRITE_INVALID . bits( ) | Self :: MEM_FETCH_INVALID . bits( ) ;
128
128
129
129
const MEM_ALL = Self :: MEM_VALID . bits( ) | Self :: MEM_INVALID . bits( ) ;
130
-
130
+
131
+ const TCG_OPCODE = ( 1 <<16 ) ;
131
132
const TLB = ( 1 << 17 ) ;
132
133
}
133
134
}
You can’t perform that action at this time.
0 commit comments