cpu/decoder - Fix decoding of bit op codes

This commit is contained in:
madmaurice 2023-09-02 00:01:55 +02:00
parent c38f0de994
commit 9db97b80ab

View file

@ -192,7 +192,7 @@ void Cpu::executeInstruction()
switch(prefix_op & 0xC0)
{
case 0x00:
switch(prefix_op & 0xF1)
switch(prefix_op & 0xF8)
{
case 0x00: // RLC
{