ra6m1/
dbg.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Debug Status Register"]
5    pub dbgstr: DBGSTR,
6    _reserved1: [u8; 0x0c],
7    #[doc = "0x10 - Debug Stop Control Register"]
8    pub dbgstopcr: DBGSTOPCR,
9    _reserved2: [u8; 0x0c],
10    #[doc = "0x20 - Trace Control Register"]
11    pub tracectr: TRACECTR,
12}
13#[doc = "DBGSTR (r) register accessor: an alias for `Reg<DBGSTR_SPEC>`"]
14pub type DBGSTR = crate::Reg<dbgstr::DBGSTR_SPEC>;
15#[doc = "Debug Status Register"]
16pub mod dbgstr;
17#[doc = "DBGSTOPCR (rw) register accessor: an alias for `Reg<DBGSTOPCR_SPEC>`"]
18pub type DBGSTOPCR = crate::Reg<dbgstopcr::DBGSTOPCR_SPEC>;
19#[doc = "Debug Stop Control Register"]
20pub mod dbgstopcr;
21#[doc = "TRACECTR (rw) register accessor: an alias for `Reg<TRACECTR_SPEC>`"]
22pub type TRACECTR = crate::Reg<tracectr::TRACECTR_SPEC>;
23#[doc = "Trace Control Register"]
24pub mod tracectr;