summaryrefslogtreecommitdiff
path: root/vdp.c
diff options
context:
space:
mode:
Diffstat (limited to 'vdp.c')
-rw-r--r--vdp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vdp.c b/vdp.c
index 0eb0655..7154548 100644
--- a/vdp.c
+++ b/vdp.c
@@ -207,6 +207,11 @@ void vdp_print_reg_explain(vdp_context * context)
context->regs[REG_HINT], context->regs[REG_HINT],
context->regs[REG_AUTOINC], context->regs[REG_AUTOINC],
context->regs[REG_SCROLL], sizes[context->regs[REG_SCROLL] & 0x3], sizes[context->regs[REG_SCROLL] >> 4 & 0x3]);
+ printf("\n**Internal Group**\n"
+ "Address: %X\n"
+ "CD: %X\n"
+ "Pending: %s\n",
+ context->address, context->cd, (context->flags & FLAG_PENDING) ? "true" : "false");
//TODO: Window Group, DMA Group
}