display op in status

This commit is contained in:
Stephen Crane 2018-09-12 10:38:16 +01:00
parent 5355f623bd
commit 21708c1c01
1 changed files with 3 additions and 3 deletions

View File

@ -27,10 +27,10 @@ uint8_t r6502::flags() {
char *r6502::status(char *buf, size_t n, bool hdr) {
flags();
snprintf(buf, n,
"%s%02x %02x %02x %02x %d%d%d%d%d%d%d%d %04x",
hdr? "aa xx yy sp nv_bdizc _pc_\r\n": "",
"%s%02x %02x %02x %02x %d%d%d%d%d%d%d%d %04x %02x",
hdr? "aa xx yy sp nv_bdizc _pc_ op\r\n": "",
A, X, Y, S, P.bits.N, P.bits.V, P.bits._, P.bits.B,
P.bits.D, P.bits.I, P.bits.Z, P.bits.C, PC);
P.bits.D, P.bits.I, P.bits.Z, P.bits.C, PC, (uint8_t)_mem[PC]);
return buf;
}