Clears the Direction flag.
(self)
| 808 | self.set_flag_value(self.Flags.Sign, False) |
| 809 | |
| 810 | def clear_df(self): |
| 811 | "Clears the Direction flag." |
| 812 | self.set_flag_value(self.Flags.Direction, False) |
| 813 | |
| 814 | def clear_tf(self): |
| 815 | "Clears the Trap flag." |
nothing calls this directly
no test coverage detected