comparison vdp.c @ 624:788545f4064f

Remove debug printf that escaped into my previous commit
author Michael Pavone <pavone@retrodev.com>
date Wed, 18 Jun 2014 16:39:42 -0700
parents 66cc60215e5c
children 9089951a1994
comparison
equal deleted inserted replaced
623:66cc60215e5c 624:788545f4064f
1765 line <<= 1; 1765 line <<= 1;
1766 if (line & 0x100) { 1766 if (line & 0x100) {
1767 line |= 1; 1767 line |= 1;
1768 } 1768 }
1769 } 1769 }
1770 printf("hv_counter_read line: %d, horiz: %d, cycles: %d\n", line, linecyc, context->cycles);
1771 return (line << 8) | linecyc; 1770 return (line << 8) | linecyc;
1772 } 1771 }
1773 1772
1774 uint16_t vdp_test_port_read(vdp_context * context) 1773 uint16_t vdp_test_port_read(vdp_context * context)
1775 { 1774 {