# HG changeset patch # User Michael Pavone # Date 1483593839 28800 # Node ID 322d28e6f13c3e6812ad8b4151cf139248773b2d # Parent 6b0da602154474945c50311d9c210405eae7a59e Display both byte and word pending values to better reflect VDP pending state in PBC mode diff -r 6b0da6021544 -r 322d28e6f13c vdp.c --- a/vdp.c Wed Jan 04 20:43:22 2017 -0800 +++ b/vdp.c Wed Jan 04 21:23:59 2017 -0800 @@ -421,7 +421,8 @@ "VINT Pending: %s\n" "HINT Pending: %s\n" "Status: %X\n", - context->address, context->cd, cd_name(context->cd), (context->flags & FLAG_PENDING) ? "true" : "false", + context->address, context->cd, cd_name(context->cd), + (context->flags & FLAG_PENDING) ? "word" : (context->flags2 & FLAG2_BYTE_PENDING) ? "byte" : "none", context->vcounter, context->hslot*2, (context->flags2 & FLAG2_VINT_PENDING) ? "true" : "false", (context->flags2 & FLAG2_HINT_PENDING) ? "true" : "false", vdp_control_port_read(context));