diff options
author | Mike Pavone <pavone@retrodev.com> | 2012-12-28 15:04:22 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2012-12-28 15:04:22 -0800 |
commit | ab3351c262528542a2eff8bb99415730da1718a6 (patch) | |
tree | a8f58eb146f3bf08363cb4c97583f7a5610f9ef8 | |
parent | f0d2669986b1ae5ed8d19f94e5aa93c2deb9e2ce (diff) |
COmment out fifo full debug printf
-rw-r--r-- | vdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1063,9 +1063,9 @@ void vdp_data_port_write(vdp_context * context, uint16_t value) { //printf("data port write: %X\n", value); context->flags &= ~FLAG_PENDING; - if (context->fifo_cur == context->fifo_end) { + /*if (context->fifo_cur == context->fifo_end) { printf("FIFO full, waiting for space before next write at cycle %X\n", context->cycles); - } + }*/ while (context->fifo_cur == context->fifo_end) { vdp_run_context(context, context->cycles + ((context->latched_mode & BIT_H40) ? 16 : 20)); } |