From c61c4d6ce1e668ebc9ec6f3a8555d41e05e56746 Mon Sep 17 00:00:00 2001 From: Nik Henson Date: Sun, 18 Sep 2011 23:38:15 +0000 Subject: [PATCH] Fixed mistake in previous commit! --- Src/Debugger/SupermodelDebugger.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Src/Debugger/SupermodelDebugger.cpp b/Src/Debugger/SupermodelDebugger.cpp index b540399..3285ff7 100644 --- a/Src/Debugger/SupermodelDebugger.cpp +++ b/Src/Debugger/SupermodelDebugger.cpp @@ -231,10 +231,9 @@ namespace Debugger // Regions cpu->AddRegion(0x0000, 0x7FFF, true, true, "ROM"); - cpu->AddRegion(0xE000, 0xFFFF, false, false, "RAM"); + cpu->AddRegion(0x8000, 0xFFFF, false, false, "RAM"); // TODO - rename some I/O ports - return cpu; } @@ -248,7 +247,6 @@ namespace Debugger cpu->AddRegion(0xF00000, 0xF10000, false, false, "RAM"); // TODO - memory mapped I/O - return cpu; } @@ -264,10 +262,9 @@ namespace Debugger // Regions cpu->AddRegion(0x0000, 0x7FFF, true, true, "ROM"); - cpu->AddRegion(0x8000, 0xFFFF, false, false, "RAM"); + cpu->AddRegion(0xE000, 0xFFFF, false, false, "RAM"); // TODO - rename some I/O ports - return cpu; }