diff vdp.c @ 337:f8c6f8684cd6

Fix background color regsiter number
author Mike Pavone <pavone@retrodev.com>
date Wed, 15 May 2013 22:37:04 -0700
parents 4c91470e1a53
children 36fbbced25c2
line wrap: on
line diff
--- a/vdp.c	Tue May 14 22:52:15 2013 -0700
+++ b/vdp.c	Wed May 15 22:37:04 2013 -0700
@@ -316,6 +316,7 @@
 				break;
 			case CRAM_WRITE:
 				context->cram[(context->address/2) & (CRAM_SIZE-1)] = context->dma_val;
+				//printf("CRAM DMA Fill | %X set to %X at %d\n", (context->address/2) & (CRAM_SIZE-1), context->cram[(context->address/2) & (CRAM_SIZE-1)], context->cycles);
 				break;
 			case VSRAM_WRITE:
 				if (((context->address/2) & 63) < VSRAM_SIZE) {
@@ -334,6 +335,7 @@
 					break;
 				case CRAM_WRITE:
 					context->cram[(context->address/2) & (CRAM_SIZE-1)] = context->dma_val;
+					//printf("CRAM DMA Copy | %X set to %X from %X at %d\n", (context->address/2) & (CRAM_SIZE-1), context->cram[(context->address/2) & (CRAM_SIZE-1)], context->regs[REG_DMASRC_L] & (CRAM_SIZE-1), context->cycles);
 					break;
 				case VSRAM_WRITE:
 					if (((context->address/2) & 63) < VSRAM_SIZE) {