From 589252b34e8e7cf183a6ff2a43b8b433bd049fde Mon Sep 17 00:00:00 2001 From: AnonymusRaccoon Date: Tue, 28 Jan 2020 18:21:14 +0100 Subject: [PATCH] Cleaning up --- sources/Memory/MemoryBus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/Memory/MemoryBus.cpp b/sources/Memory/MemoryBus.cpp index 6ff8d2b..fb18700 100644 --- a/sources/Memory/MemoryBus.cpp +++ b/sources/Memory/MemoryBus.cpp @@ -71,10 +71,10 @@ namespace ComSquare // TODO implement DMA & HDMA (4220 to 4300) // TODO implement Joys. - // Map to the quarter 1. + // Mirror to the quarter 1. for (uint24_t i = 0; i < 0x400000; i += 0x10000) this->_mirrorComponents(console, i); - // Map to the quarter 3. + // Mirror to the quarter 3. for (uint24_t i = 0x800000; i < 0xC00000; i += 0x10000) this->_mirrorComponents(console, i);