diff --git a/lib/src/processor/memory/mmio/cgb/vram_dma.rs b/lib/src/processor/memory/mmio/cgb/vram_dma.rs index 56a4c37..6fcda03 100644 --- a/lib/src/processor/memory/mmio/cgb/vram_dma.rs +++ b/lib/src/processor/memory/mmio/cgb/vram_dma.rs @@ -55,8 +55,8 @@ impl VramDma { } fn reset_registers(&mut self) { - self.source = 0; - self.destination = 0x8000; + self.source = 0xFFF0; + self.destination = 0x9FF0; } pub(crate) fn set_register(&mut self, address: VramDmaAddress, data: u8) {