moondancer-pac 0.2.2

A peripheral access crate for the Cynthion Moondancer SoC
Documentation
//! Register access functions for RISC-V system registers.

macro_rules! read_csr {
    ($csr_number:literal) => {
        #[inline]
        unsafe fn _read() -> usize {
            match () {
                () => {
                    let r: usize;
                    core::arch::asm!(concat!("csrrs {0}, ", stringify!($csr_number), ", x0"), out(reg) r);
                    r
                }
            }
        }
    };
}
pub(crate) use read_csr;

macro_rules! write_csr {
    ($csr_number:literal) => {
        #[inline]
        #[allow(unused_variables)]
        unsafe fn _write(bits: usize) {
            match () {
                () => core::arch::asm!(concat!("csrrw x0, ", stringify!($csr_number), ", {0}"), in(reg) bits),
            }
        }
    };
}
pub(crate) use write_csr;

macro_rules! read_csr_as_usize {
    ($csr_number:literal) => {
        crate::macros::read_csr!($csr_number);

        #[inline]
        #[allow(clippy::must_use_candidate)]
        pub fn read() -> usize {
            unsafe { _read() }
        }
    };
}
pub(crate) use read_csr_as_usize;

macro_rules! write_csr_as_usize {
    ($csr_number:literal) => {
        crate::macros::write_csr!($csr_number);

        #[inline]
        pub fn write(bits: usize) {
            unsafe { _write(bits) }
        }
    };
}
pub(crate) use write_csr_as_usize;