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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use bit_field::BitField;
#[derive(Clone, Copy, Debug)]
pub struct Sip {
bits: usize,
}
impl Sip {
#[inline]
pub fn bits(&self) -> usize {
self.bits
}
#[inline]
pub fn usoft(&self) -> bool {
self.bits.get_bit(0)
}
#[inline]
pub fn ssoft(&self) -> bool {
self.bits.get_bit(1)
}
#[inline]
pub fn utimer(&self) -> bool {
self.bits.get_bit(4)
}
#[inline]
pub fn stimer(&self) -> bool {
self.bits.get_bit(5)
}
#[inline]
pub fn uext(&self) -> bool {
self.bits.get_bit(8)
}
#[inline]
pub fn sext(&self) -> bool {
self.bits.get_bit(9)
}
}
read_csr_as!(Sip, 0x144, __read_sip);