File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,18 @@ pub struct RegisterBlock {
33
33
/// Interrupt Active Bit (not present on Cortex-M0 variants)
34
34
#[ cfg( not( armv6m) ) ]
35
35
pub iabr : [ RO < u32 > ; 16 ] ,
36
- #[ cfg( any ( armv6m, armv8m ) ) ]
36
+ #[ cfg( armv6m) ]
37
37
_reserved4 : [ u32 ; 16 ] ,
38
38
39
+ _reserved5 : [ u32 ; 16 ] ,
40
+
39
41
#[ cfg( armv8m) ]
40
42
/// Interrupt Target Non-secure (only present on Arm v8-M)
41
43
pub itns : [ RW < u32 > ; 16 ] ,
42
- #[ cfg( armv8m) ]
43
- _reserved5 : [ u32 ; 32 ] ,
44
-
45
44
#[ cfg( not( armv8m) ) ]
46
- _reserved5 : [ u32 ; 48 ] ,
45
+ _reserved6 : [ u32 ; 16 ] ,
46
+
47
+ _reserved7 : [ u32 ; 16 ] ,
47
48
48
49
/// Interrupt Priority
49
50
///
@@ -74,7 +75,7 @@ pub struct RegisterBlock {
74
75
pub ipr : [ RW < u32 > ; 8 ] ,
75
76
76
77
#[ cfg( not( armv6m) ) ]
77
- _reserved6 : [ u32 ; 580 ] ,
78
+ _reserved8 : [ u32 ; 580 ] ,
78
79
79
80
/// Software Trigger Interrupt
80
81
#[ cfg( not( armv6m) ) ]
You can’t perform that action at this time.
0 commit comments