(t *testing.T)
| 384 | } |
| 385 | |
| 386 | func TestJMPA(t *testing.T) { |
| 387 | ClearMem() |
| 388 | testJMPConditional(0x0054, 0x0020, 0x00F1, [4]uint16{0x0002, 0x0001, 0x0001, 0x002}, 0x0020, t) |
| 389 | // should not jump in false case |
| 390 | testJMPConditional(0x0054, 0x0021, 0x00F1, [4]uint16{0x0001, 0x0003, 0x0001, 0x0001}, 0x0003, t) |
| 391 | } |
| 392 | |
| 393 | func TestJMPE(t *testing.T) { |
| 394 | ClearMem() |
nothing calls this directly
no test coverage detected