(self)
| 183 | raise AttributeError(f"attribute '{name}' is read only") |
| 184 | |
| 185 | def __repr__(self): |
| 186 | hint_str = f", {self.hint}" if self.hint != '' else '' |
| 187 | return f"<DebugRegister: {self.name}, {self.value:#x}{hint_str}>" |
| 188 | |
| 189 | |
| 190 | class DebugRegisters: |
nothing calls this directly
no outgoing calls
no test coverage detected