mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-18 08:11:40 +00:00
GekkoDisassembler: fix rld*
This commit is contained in:
parent
49590c9a42
commit
b021573a70
1 changed files with 1 additions and 1 deletions
|
@ -1470,7 +1470,7 @@ u32* GekkoDisassembler::DoDisassembly(bool big_endian)
|
|||
break;
|
||||
|
||||
case 30:
|
||||
switch (in & 0x1c)
|
||||
switch ((in >> 2) & 0x7)
|
||||
{
|
||||
case 0:
|
||||
rld(in, "icl", 0); // rldicl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue