Removing impossible test as every value is an instruction opcode

This commit is contained in:
Melefo
2021-02-11 10:29:55 +01:00
parent ed188e0e63
commit a4744a40cd
-9
View File
@@ -203,15 +203,6 @@ Test(executeInstruction, Valid)
cr_assert_eq(result, 2);
}
Test(executeInstruction, Invalid)
{
Init()
auto apu = snes.apu;
apu->_internalRegisters.pc = 0xFFFF;
cr_assert_throw(apu->_executeInstruction(), InvalidOpcode);
}
///////////////////////
// //
// APU::update tests //