mk66f18/sysmpu/
ear.rs

1#[doc = "Reader of register EAR%s"]
2pub type R = crate::R<u32, super::EAR>;
3#[doc = "Reader of field `EADDR`"]
4pub type EADDR_R = crate::R<u32, u32>;
5impl R {
6    #[doc = "Bits 0:31 - Error Address"]
7    #[inline(always)]
8    pub fn eaddr(&self) -> EADDR_R {
9        EADDR_R::new((self.bits & 0xffff_ffff) as u32)
10    }
11}