mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
RSX: Fix debugger disasm.
This commit is contained in:
parent
fc40b0ed6b
commit
3449bd3842
1 changed files with 1 additions and 1 deletions
|
@ -840,7 +840,7 @@ wxString RSXDebugger::DisAsmCommand(u32 cmd, u32 count, u32 currentAddr, u32 ioA
|
||||||
auto args = vm::ps3::ptr<u32>::make(currentAddr + 4);
|
auto args = vm::ps3::ptr<u32>::make(currentAddr + 4);
|
||||||
|
|
||||||
u32 index = 0;
|
u32 index = 0;
|
||||||
switch(cmd & 0x3ffff)
|
switch((cmd & 0x3ffff) >> 2)
|
||||||
{
|
{
|
||||||
case NV406E_SEMAPHORE_OFFSET:
|
case NV406E_SEMAPHORE_OFFSET:
|
||||||
DISASM("PFIFO: Semaphore offset 0x%x", (u32)args[0]);
|
DISASM("PFIFO: Semaphore offset 0x%x", (u32)args[0]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue