M6502: Added an R to the State output to indicate when the RDY signal is false.
This commit is contained in:
parent
a3ef769407
commit
b8ac99992e
|
@ -54,6 +54,7 @@ namespace BizHawk.Emulation.Cores.Components.M6502
|
|||
if (FlagI) val = val + "I";
|
||||
if (FlagZ) val = val + "Z";
|
||||
if (FlagC) val = val + "C";
|
||||
if (!RDY) val = val + "R";
|
||||
return val;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue