1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = "Register `PI_REG_174` reader"]
pub type R = crate::R<PiReg174Spec>;
#[doc = "Field `PI_INT_STATUS` reader - Indicates status of interrupt features in the PI."]
pub type PiIntStatusR = crate::FieldReader<u32>;
impl R {
    #[doc = "Bits 8:25 - Indicates status of interrupt features in the PI."]
    #[inline(always)]
    pub fn pi_int_status(&self) -> PiIntStatusR {
        PiIntStatusR::new((self.bits >> 8) & 0x0003_ffff)
    }
}
#[doc = "DDR PHY Independent Register 174\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pi_reg_174::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PiReg174Spec;
impl crate::RegisterSpec for PiReg174Spec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`pi_reg_174::R`](R) reader structure"]
impl crate::Readable for PiReg174Spec {}
#[doc = "`reset()` method sets PI_REG_174 to value 0"]
impl crate::Resettable for PiReg174Spec {
    const RESET_VALUE: u32 = 0;
}