mod peripheral;
mod register;
pub use peripheral::*;
pub use register::*;
pub struct Svd {
device: svd::Device,
}
impl Svd {
pub const fn device(&self) -> &svd::Device {
&self.device
}
pub fn device_mut(&mut self) -> &svd::Device {
&mut self.device
}
}