diff options
Diffstat (limited to 'ppu.c')
| -rw-r--r-- | ppu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -98,7 +98,7 @@ static void ppu_write_2004(struct nes_state *state, uint8_t value) { static void ppu_write_2005(struct nes_state *state, uint8_t value) { struct ppu_state *ppu = &state->ppu; - printf("2005 write at sc=%u dot=%u: %02x\n", ppu->scanline, ppu->dot, value); + // printf("2005 write at sc=%u dot=%u: %02x\n", ppu->scanline, ppu->dot, value); if(ppu->write_latch == 0) { ppu->fine_x = value & 0x07; @@ -118,7 +118,7 @@ static void ppu_write_2005(struct nes_state *state, uint8_t value) { static void ppu_write_2006(struct nes_state *state, uint8_t value) { struct ppu_state *ppu = &state->ppu; - printf("2006 write at sc=%u dot=%u: %02x\n", ppu->scanline, ppu->dot, value); + // printf("2006 write at sc=%u dot=%u: %02x\n", ppu->scanline, ppu->dot, value); if(ppu->write_latch == 0) { ppu->vram_addr = ((uint32_t)(value & 0x3f)) << 8; |
