# HG changeset patch # User Michael Pavone # Date 1408034312 25200 # Node ID 9089951a1994312deab67878071215a0565928be # Parent 04157869332921b21b41e0c210f80a967896f1e8 Small fix to display of DMA source address in vr debug command diff -r 041578693329 -r 9089951a1994 vdp.c --- a/vdp.c Sat Jun 21 09:36:15 2014 -0700 +++ b/vdp.c Thu Aug 14 09:38:32 2014 -0700 @@ -255,7 +255,7 @@ context->regs[REG_DMASRC_L], context->regs[REG_DMASRC_M], context->regs[REG_DMASRC_H], - context->regs[REG_DMASRC_H] << 17 | context->regs[REG_DMASRC_M] << 9 | context->regs[REG_DMASRC_L], + context->regs[REG_DMASRC_H] << 17 | context->regs[REG_DMASRC_M] << 9 | context->regs[REG_DMASRC_L] << 1, src_types[context->regs[REG_DMASRC_H] >> 6 & 3]); printf("\n**Internal Group**\n" "Address: %X\n"