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
use bit_field::BitField;
#[derive(Clone, Copy, Debug)]
pub struct Uie {
bits: usize,
}
impl Uie {
#[inline]
pub fn bits(&self) -> usize {
self.bits
}
#[inline]
pub fn usoft(&self) -> bool {
self.bits.get_bit(0)
}
#[inline]
pub fn utimer(&self) -> bool {
self.bits.get_bit(4)
}
#[inline]
pub fn uext(&self) -> bool {
self.bits.get_bit(8)
}
}
read_csr_as!(Uie, 0x004, __read_uie);
set!(0x004, __set_uie);
clear!(0x004, __clear_uie);
set_clear_csr!(
, set_usoft, clear_usoft, 1 << 0);
set_clear_csr!(
, set_utimer, clear_utimer, 1 << 4);
set_clear_csr!(
, set_uext, clear_uext, 1 << 8);