diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-08-14 09:38:32 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-08-14 09:38:32 -0700 |
commit | de4b489931b6deb80fc1e09340c5c501d337aad0 (patch) | |
tree | f3b6b98954aec13dede1561ac0175842afb69c54 | |
parent | 24d56647b3b2baa4e7016ac5d66c0167d51688be (diff) |
Small fix to display of DMA source address in vr debug command
-rw-r--r-- | vdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,7 +255,7 @@ void vdp_print_reg_explain(vdp_context * context) 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" |