(t *testing.T)
| 377 | } |
| 378 | |
| 379 | func TestJMPC(t *testing.T) { |
| 380 | ClearMem() |
| 381 | testJMPConditional(0x0058, 0x0090, 0x0081, [4]uint16{0x0004, 0xFFFF, 0x0001, 0x002}, 0x0090, t) |
| 382 | // should not jump in false case |
| 383 | testJMPConditional(0x0058, 0x0091, 0x0081, [4]uint16{0x0005, 0x0006, 0x0001, 0x0001}, 0x0003, t) |
| 384 | } |
| 385 | |
| 386 | func TestJMPA(t *testing.T) { |
| 387 | ClearMem() |
nothing calls this directly
no test coverage detected