1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 platform: PLATFORM,
5}
6impl RegisterBlock {
7#[doc = "0x00 - Indicates the type of platform in use"]
8 #[inline(always)]
9pub const fn platform(&self) -> &PLATFORM {
10&self.platform
11 }
12}
13#[doc = "PLATFORM (r) register accessor: Indicates the type of platform in use
1415You can [`read`](crate::generic::Reg::read) this register and get [`platform::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
1617For information about available fields see [`mod@platform`]
18module"]
19pub type PLATFORM = crate::Reg<platform::PLATFORM_SPEC>;
20#[doc = "Indicates the type of platform in use"]
21pub mod platform;