ACTUALLY fixed vram dma

This commit is contained in:
Alex Janka 2023-04-26 11:11:46 +10:00
parent 4a63e38b29
commit 71a87cf88e

View file

@ -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) {