Clears the Zero flag.
(self)
| 796 | return self.get_flag_value(self.Flags.Trap) |
| 797 | |
| 798 | def clear_zf(self): |
| 799 | "Clears the Zero flag." |
| 800 | self.set_flag_value(self.Flags.Zero, False) |
| 801 | |
| 802 | def clear_cf(self): |
| 803 | "Clears the Carry flag." |
nothing calls this directly
no test coverage detected