Clears the Carry flag.
(self)
| 800 | self.set_flag_value(self.Flags.Zero, False) |
| 801 | |
| 802 | def clear_cf(self): |
| 803 | "Clears the Carry flag." |
| 804 | self.set_flag_value(self.Flags.Carry, False) |
| 805 | |
| 806 | def clear_sf(self): |
| 807 | "Clears the Sign flag." |
nothing calls this directly
no test coverage detected