//! Debug Control Block use volatile_register::{RW, WO}; /// Register block #[repr(C)] pub struct RegisterBlock { /// Debug Halting Control and Status pub dhcsr: RW, /// Debug Core Register Selector pub dcrsr: WO, /// Debug Core Register Data pub dcrdr: RW, /// Debug Exception and Monitor Control pub demcr: RW, }