| ... | @@ -59,6 +59,7 @@ pub const EXC = enum(exception_type_t) { | ... | @@ -59,6 +59,7 @@ pub const EXC = enum(exception_type_t) { |
| 59 | pub const SOFT_SIGNAL = 0x10003; | 59 | pub const SOFT_SIGNAL = 0x10003; |
| 60 | | 60 | |
| 61 | pub const MASK = packed struct(u32) { | 61 | pub const MASK = packed struct(u32) { |
| | 62 | _0: u1 = 0, |
| 62 | BAD_ACCESS: bool = false, | 63 | BAD_ACCESS: bool = false, |
| 63 | BAD_INSTRUCTION: bool = false, | 64 | BAD_INSTRUCTION: bool = false, |
| 64 | ARITHMETIC: bool = false, | 65 | ARITHMETIC: bool = false, |
| ... | @@ -72,6 +73,7 @@ pub const EXC = enum(exception_type_t) { | ... | @@ -72,6 +73,7 @@ pub const EXC = enum(exception_type_t) { |
| 72 | RESOURCE: bool = false, | 73 | RESOURCE: bool = false, |
| 73 | GUARD: bool = false, | 74 | GUARD: bool = false, |
| 74 | CORPSE_NOTIFY: bool = false, | 75 | CORPSE_NOTIFY: bool = false, |
| | 76 | _14: u18 = 0, |
| 75 | | 77 | |
| 76 | pub const MACHINE: MASK = @bitCast(@as(u32, 0)); | 78 | pub const MACHINE: MASK = @bitCast(@as(u32, 0)); |
| 77 | | 79 | |