tm4c129x/sysctl/
premac.rs

1#[doc = "Reader of register PREMAC"]
2pub type R = crate::R<u32, super::PREMAC>;
3#[doc = "Reader of field `R0`"]
4pub type R0_R = crate::R<bool, bool>;
5impl R {
6    #[doc = "Bit 0 - Ethernet MAC Module 0 Peripheral Ready"]
7    #[inline(always)]
8    pub fn r0(&self) -> R0_R {
9        R0_R::new((self.bits & 0x01) != 0)
10    }
11}