mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Add NOP to GE disasm.
This commit is contained in:
parent
bf808064b2
commit
b84dadfd3a
@ -82,6 +82,13 @@ void GeDisassembleOp(u32 pc, u32 op, u32 prev, char *buffer) {
|
||||
// Handle control and drawing commands here directly. The others we delegate.
|
||||
switch (cmd)
|
||||
{
|
||||
case GE_CMD_NOP:
|
||||
if (data != 0)
|
||||
sprintf(buffer, "NOP: %06x", data);
|
||||
else
|
||||
sprintf(buffer, "NOP", data);
|
||||
break;
|
||||
|
||||
case GE_CMD_BASE:
|
||||
sprintf(buffer, "BASE: %06x", data & 0xFFFFFF);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user