riscv-aia 0.0.0

Low level access to the RISC-V Advanced Interrupt Architecture (AIA)
Documentation
//! Machine interrupt-pending high-half (miph) (RV32 only)

riscv::read_write_csr! {
    /// Upper 32 bits of mip (RV32 only).
    Miph: 0x354,
    mask: 0xFFFF_FFFF,
}

impl Miph {
    #[inline]
    pub const fn raw(self) -> usize {
        self.bits
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn miph_raw_roundtrip() {
        let bits: usize = 0x1234_5678usize & 0xFFFF_FFFF;
        let reg = Miph::from_bits(bits);
        assert_eq!(reg.raw(), bits);
    }
}