| 1 | #![allow(non_snake_case)] |
|---|---|
| 2 | |
| 3 | pub mod peripherals; |
| 4 | pub mod register; |
| 5 | |
| 6 | pub use crate::{modify_reg, read_reg, write_reg}; |
| 7 | |
| 8 | pub mod fmc { |
| 9 | pub use super::peripherals::fmc::*; |
| 10 | } |
| 11 |
| 1 | #![allow(non_snake_case)] |
|---|---|
| 2 | |
| 3 | pub mod peripherals; |
| 4 | pub mod register; |
| 5 | |
| 6 | pub use crate::{modify_reg, read_reg, write_reg}; |
| 7 | |
| 8 | pub mod fmc { |
| 9 | pub use super::peripherals::fmc::*; |
| 10 | } |
| 11 |