tm4c129x/emac0/hosrxdesc.rs
1#[doc = "Reader of register HOSRXDESC"]
2pub type R = crate::R<u32, super::HOSRXDESC>;
3#[doc = "Reader of field `CURRXDESC`"]
4pub type CURRXDESC_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - Host Receive Descriptor Address Pointer"]
7 #[inline(always)]
8 pub fn currxdesc(&self) -> CURRXDESC_R {
9 CURRXDESC_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}