|
@@ -13,12 +13,6 @@ impl Mie {
|
|
|
self.bits
|
|
|
}
|
|
|
|
|
|
- /// User Software Interrupt Enable
|
|
|
- #[inline]
|
|
|
- pub fn usoft(&self) -> bool {
|
|
|
- self.bits & (1 << 0) != 0
|
|
|
- }
|
|
|
-
|
|
|
/// Supervisor Software Interrupt Enable
|
|
|
#[inline]
|
|
|
pub fn ssoft(&self) -> bool {
|
|
@@ -31,12 +25,6 @@ impl Mie {
|
|
|
self.bits & (1 << 3) != 0
|
|
|
}
|
|
|
|
|
|
- /// User Timer Interrupt Enable
|
|
|
- #[inline]
|
|
|
- pub fn utimer(&self) -> bool {
|
|
|
- self.bits & (1 << 4) != 0
|
|
|
- }
|
|
|
-
|
|
|
/// Supervisor Timer Interrupt Enable
|
|
|
#[inline]
|
|
|
pub fn stimer(&self) -> bool {
|
|
@@ -49,12 +37,6 @@ impl Mie {
|
|
|
self.bits & (1 << 7) != 0
|
|
|
}
|
|
|
|
|
|
- /// User External Interrupt Enable
|
|
|
- #[inline]
|
|
|
- pub fn uext(&self) -> bool {
|
|
|
- self.bits & (1 << 8) != 0
|
|
|
- }
|
|
|
-
|
|
|
/// Supervisor External Interrupt Enable
|
|
|
#[inline]
|
|
|
pub fn sext(&self) -> bool {
|
|
@@ -72,27 +54,18 @@ read_csr_as!(Mie, 0x304);
|
|
|
set!(0x304);
|
|
|
clear!(0x304);
|
|
|
|
|
|
-set_clear_csr!(
|
|
|
- /// User Software Interrupt Enable
|
|
|
- , set_usoft, clear_usoft, 1 << 0);
|
|
|
set_clear_csr!(
|
|
|
/// Supervisor Software Interrupt Enable
|
|
|
, set_ssoft, clear_ssoft, 1 << 1);
|
|
|
set_clear_csr!(
|
|
|
/// Machine Software Interrupt Enable
|
|
|
, set_msoft, clear_msoft, 1 << 3);
|
|
|
-set_clear_csr!(
|
|
|
- /// User Timer Interrupt Enable
|
|
|
- , set_utimer, clear_utimer, 1 << 4);
|
|
|
set_clear_csr!(
|
|
|
/// Supervisor Timer Interrupt Enable
|
|
|
, set_stimer, clear_stimer, 1 << 5);
|
|
|
set_clear_csr!(
|
|
|
/// Machine Timer Interrupt Enable
|
|
|
, set_mtimer, clear_mtimer, 1 << 7);
|
|
|
-set_clear_csr!(
|
|
|
- /// User External Interrupt Enable
|
|
|
- , set_uext, clear_uext, 1 << 8);
|
|
|
set_clear_csr!(
|
|
|
/// Supervisor External Interrupt Enable
|
|
|
, set_sext, clear_sext, 1 << 9);
|