tm4c129x/sysctl/
sysprop.rs1#[doc = "Reader of register SYSPROP"]
2pub type R = crate::R<u32, super::SYSPROP>;
3#[doc = "Reader of field `FPU`"]
4pub type FPU_R = crate::R<bool, bool>;
5impl R {
6 #[doc = "Bit 0 - FPU Present"]
7 #[inline(always)]
8 pub fn fpu(&self) -> FPU_R {
9 FPU_R::new((self.bits & 0x01) != 0)
10 }
11}