1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[doc = "Reader of register DCIDR3"]
pub type R = crate::R<u32, super::DCIDR3>;
#[doc = "Reader of field `PRMBL_3`"]
pub type PRMBL_3_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:7 - CoreSight component identification preamble"]
    #[inline(always)]
    pub fn prmbl_3(&self) -> PRMBL_3_R {
        PRMBL_3_R::new((self.bits & 0xff) as u8)
    }
}