(self, other: State)
| 186 | return State.__dict_diff(self.reg, other.reg) |
| 187 | |
| 188 | def _diff_xreg(self, other: State) -> Dict[str, int]: |
| 189 | return State.__dict_diff(self.xreg, other.xreg) |
| 190 | |
| 191 | def _diff_ram(self, other: State) -> Dict[RamDiffKey, RamDiffVal]: |
| 192 | ram0 = self.ram |