(t *testing.T)
| 82 | } |
| 83 | |
| 84 | func TestFlagsRegisterIsLargerFlagEnabled(t *testing.T) { |
| 85 | ClearMem() |
| 86 | c := SetUpCPU() |
| 87 | |
| 88 | setMemoryLocation(c, 0x0000, 0x0081) |
| 89 | setRegisters(c, [4]uint16{0x0021, 0x0020, 0x0002, 0x0003}) |
| 90 | c.SetIAR(0x0000) |
| 91 | |
| 92 | doFetchDecodeExecute(c) |
| 93 | |
| 94 | checkFlagsRegister(c, false, true, false, false, t) |
| 95 | } |
| 96 | |
| 97 | func TestFlagsRegisterIsEqualsFlagEnabled(t *testing.T) { |
| 98 | ClearMem() |
nothing calls this directly
no test coverage detected