stop printing unmapped ppu writes

This commit is contained in:
Matthew Berry 2021-02-27 12:45:58 -08:00
parent e753ebe18a
commit 8c66c9200c

View file

@ -455,7 +455,6 @@ class PPU
when 0x053 then @bldalpha.value = (@bldalpha.value & 0x00FF) | value.to_u16 << 8
when 0x054 then @bldy.value = (@bldy.value & 0xFF00) | value
when 0x055 then @bldy.value = (@bldy.value & 0x00FF) | value.to_u16 << 8
else puts "Unmapped PPU write ~ addr:#{hex_str io_addr.to_u8}, val:#{value}".colorize(:yellow)
end
end
end