| 132 | u16 upper() const { return (_u32 >> 16); } |
| 133 | u16 lower() const { return (u16)_u32; } |
| 134 | std::string desc() const { return StringUtil::StdStringFromFormat("Chcr: 0x%x", _u32); } |
| 135 | tDMA_TAG tag() { return (tDMA_TAG)_u32; } |
| 136 | }; |
| 137 |
nothing calls this directly
no test coverage detected