pub type R = crate::R<PARrs>;
pub type W = crate::W<PARrs>;
pub type PA_R = crate::FieldReader<u32>;
pub type PA_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
impl R {
#[inline(always)]
pub fn pa(&self) -> PA_R {
PA_R::new(self.bits)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("PAR").field("pa", &self.pa()).finish()
}
}
impl W {
#[inline(always)]
pub fn pa(&mut self) -> PA_W<PARrs> {
PA_W::new(self, 0)
}
}
pub struct PARrs;
impl crate::RegisterSpec for PARrs {
type Ux = u32;
}
impl crate::Readable for PARrs {}
impl crate::Writable for PARrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for PARrs {}