diff --git a/src/mmu.rs b/src/mmu.rs index 360d7f95bd4b0bf0e20f48a49f1b47dd4a7c7835..a64f6a6aca548f381c13b93907e3d366ab6ed516 100644 --- a/src/mmu.rs +++ b/src/mmu.rs @@ -175,10 +175,9 @@ impl Mmu { 0x0046 => { // @todo must increment the cycle count by 160 // and make this a separated dma.rs file - println!("GOING TO START DMA transfer to 0x{:x}00", value); + println!("Going to start DMA transfer to 0x{:x}00", value); let data = self.read_many((value as u16) << 8, 160); self.write_many(0xfe00, &data); - println!("FINISHED DMA transfer"); } _ => self.ppu.write(addr, value), }