cpu/decoder - Fix decoding of bit op codes
This commit is contained in:
parent
c38f0de994
commit
9db97b80ab
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ void Cpu::executeInstruction()
|
||||||
switch(prefix_op & 0xC0)
|
switch(prefix_op & 0xC0)
|
||||||
{
|
{
|
||||||
case 0x00:
|
case 0x00:
|
||||||
switch(prefix_op & 0xF1)
|
switch(prefix_op & 0xF8)
|
||||||
{
|
{
|
||||||
case 0x00: // RLC
|
case 0x00: // RLC
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue