| 5822 | } |
| 5823 | |
| 5824 | void testJP(U8 instruction) { |
| 5825 | testJ(instruction, PF, true); |
| 5826 | testJ(instruction, CF, false); |
| 5827 | testJ(instruction, OF, false); |
| 5828 | testJ(instruction, SF, false); |
| 5829 | testJ(instruction, AF, false); |
| 5830 | testJ(instruction, ZF, false); |
| 5831 | } |
| 5832 | |
| 5833 | void testJNP(U8 instruction) { |
| 5834 | testJ(instruction, PF, false); |
no test coverage detected