1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-13 01:29:57 +00:00

The overflow flag should be represented by "V".

This commit is contained in:
Radosław Kujawa 2017-02-01 22:11:24 +01:00
parent 92418b0f1f
commit 436810b79f

View File

@ -97,7 +97,7 @@ rk65c02_dump_regs(rk65c02emu_t *e)
printf("-");
if (e->regs.P & P_SIGN_OVERFLOW)
printf("O");
printf("V");
else
printf("-");