va416xx-rs/va416xx/src/sysconfig/irq_enb.rs
Robin Mueller 5d1740efea
All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good
Init Commit
Monorepo for Rust support of VA416XX family of radiation hardened MCUs
2024-06-25 20:01:21 +02:00

116 lines
4.4 KiB
Rust

#[doc = "Register `IRQ_ENB` reader"]
pub type R = crate::R<IrqEnbSpec>;
#[doc = "Register `IRQ_ENB` writer"]
pub type W = crate::W<IrqEnbSpec>;
#[doc = "Field `ROMMBE` reader - ROM Multi Bit Interrupt"]
pub type RommbeR = crate::BitReader;
#[doc = "Field `ROMMBE` writer - ROM Multi Bit Interrupt"]
pub type RommbeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `ROMSBE` reader - ROM Single Bit Interrupt"]
pub type RomsbeR = crate::BitReader;
#[doc = "Field `ROMSBE` writer - ROM Single Bit Interrupt"]
pub type RomsbeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RAM0MBE` reader - RAM0 Multi Bit Interrupt"]
pub type Ram0mbeR = crate::BitReader;
#[doc = "Field `RAM0MBE` writer - RAM0 Multi Bit Interrupt"]
pub type Ram0mbeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RAM0SBE` reader - RAM0 Single Bit Interrupt"]
pub type Ram0sbeR = crate::BitReader;
#[doc = "Field `RAM0SBE` writer - RAM0 Single Bit Interrupt"]
pub type Ram0sbeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RAM1MBE` reader - RAM1 Multi Bit Interrupt"]
pub type Ram1mbeR = crate::BitReader;
#[doc = "Field `RAM1MBE` writer - RAM1 Multi Bit Interrupt"]
pub type Ram1mbeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `RAM1SBE` reader - RAM1 Single Bit Interrupt"]
pub type Ram1sbeR = crate::BitReader;
#[doc = "Field `RAM1SBE` writer - RAM1 Single Bit Interrupt"]
pub type Ram1sbeW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[doc = "Bit 0 - ROM Multi Bit Interrupt"]
#[inline(always)]
pub fn rommbe(&self) -> RommbeR {
RommbeR::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - ROM Single Bit Interrupt"]
#[inline(always)]
pub fn romsbe(&self) -> RomsbeR {
RomsbeR::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - RAM0 Multi Bit Interrupt"]
#[inline(always)]
pub fn ram0mbe(&self) -> Ram0mbeR {
Ram0mbeR::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 3 - RAM0 Single Bit Interrupt"]
#[inline(always)]
pub fn ram0sbe(&self) -> Ram0sbeR {
Ram0sbeR::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 4 - RAM1 Multi Bit Interrupt"]
#[inline(always)]
pub fn ram1mbe(&self) -> Ram1mbeR {
Ram1mbeR::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 5 - RAM1 Single Bit Interrupt"]
#[inline(always)]
pub fn ram1sbe(&self) -> Ram1sbeR {
Ram1sbeR::new(((self.bits >> 5) & 1) != 0)
}
}
impl W {
#[doc = "Bit 0 - ROM Multi Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn rommbe(&mut self) -> RommbeW<IrqEnbSpec> {
RommbeW::new(self, 0)
}
#[doc = "Bit 1 - ROM Single Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn romsbe(&mut self) -> RomsbeW<IrqEnbSpec> {
RomsbeW::new(self, 1)
}
#[doc = "Bit 2 - RAM0 Multi Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn ram0mbe(&mut self) -> Ram0mbeW<IrqEnbSpec> {
Ram0mbeW::new(self, 2)
}
#[doc = "Bit 3 - RAM0 Single Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn ram0sbe(&mut self) -> Ram0sbeW<IrqEnbSpec> {
Ram0sbeW::new(self, 3)
}
#[doc = "Bit 4 - RAM1 Multi Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn ram1mbe(&mut self) -> Ram1mbeW<IrqEnbSpec> {
Ram1mbeW::new(self, 4)
}
#[doc = "Bit 5 - RAM1 Single Bit Interrupt"]
#[inline(always)]
#[must_use]
pub fn ram1sbe(&mut self) -> Ram1sbeW<IrqEnbSpec> {
Ram1sbeW::new(self, 5)
}
}
#[doc = "Enable EDAC Error Interrupt Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`irq_enb::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`irq_enb::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct IrqEnbSpec;
impl crate::RegisterSpec for IrqEnbSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`irq_enb::R`](R) reader structure"]
impl crate::Readable for IrqEnbSpec {}
#[doc = "`write(|w| ..)` method takes [`irq_enb::W`](W) writer structure"]
impl crate::Writable for IrqEnbSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets IRQ_ENB to value 0"]
impl crate::Resettable for IrqEnbSpec {
const RESET_VALUE: u32 = 0;
}