summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ppu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppu.c b/ppu.c
index f25348d..dbf8e2b 100644
--- a/ppu.c
+++ b/ppu.c
@@ -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;