M6502: Added an R to the State output to indicate when the RDY signal is false.

This commit is contained in:
pjgat09 2016-02-13 17:15:14 -05:00
parent a3ef769407
commit b8ac99992e
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}