1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Primask {
Active,
Inactive,
}
impl Primask {
#[inline]
pub fn is_active(self) -> bool {
self == Primask::Active
}
#[inline]
pub fn is_inactive(self) -> bool {
self == Primask::Inactive
}
}
#[inline]
pub fn read() -> Primask {
fn read_raw() -> u32 {
call_asm!(__primask_r() -> u32)
}
let r = read_raw();
if r & (1 << 0) == (1 << 0) {
Primask::Inactive
} else {
Primask::Active
}
}