| 9420 | } |
| 9421 | |
| 9422 | void doTestBswap(U8 reg) { |
| 9423 | newInstruction(0x3c8 + reg, 0); |
| 9424 | cpu->reg[reg].u32 = 0x12345678; |
| 9425 | runTestCPU(); |
| 9426 | assertTrue(cpu->reg[reg].u32 == 0x78563412); |
| 9427 | } |
| 9428 | |
| 9429 | void testBswap3c8() { |
| 9430 | cpu->big = 1; |
no test coverage detected