1#[repr(C)]
2#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
3#[doc = "Register block"]
4pub struct RegisterBlock {
5 _reserved0: [u8; 0x90],
6 gen_ctrl: GEN_CTRL,
7}
8impl RegisterBlock {
9 #[doc = "0x90 - FE General Control Register"]
10 #[inline(always)]
11 pub const fn gen_ctrl(&self) -> &GEN_CTRL {
12 &self.gen_ctrl
13 }
14}
15#[doc = "GEN_CTRL (rw) register accessor: FE General Control Register\n\nYou can [`read`](crate::Reg::read) this register and get [`gen_ctrl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`gen_ctrl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gen_ctrl`] module"]
16pub type GEN_CTRL = crate::Reg<gen_ctrl::GEN_CTRL_SPEC>;
17#[doc = "FE General Control Register"]
18pub mod gen_ctrl;