mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 13:55:38 +00:00
Fixed mistake in previous commit!
This commit is contained in:
parent
d80c7b97ad
commit
c61c4d6ce1
|
@ -231,10 +231,9 @@ namespace Debugger
|
||||||
|
|
||||||
// Regions
|
// Regions
|
||||||
cpu->AddRegion(0x0000, 0x7FFF, true, true, "ROM");
|
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
|
// TODO - rename some I/O ports
|
||||||
|
|
||||||
return cpu;
|
return cpu;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -248,7 +247,6 @@ namespace Debugger
|
||||||
cpu->AddRegion(0xF00000, 0xF10000, false, false, "RAM");
|
cpu->AddRegion(0xF00000, 0xF10000, false, false, "RAM");
|
||||||
|
|
||||||
// TODO - memory mapped I/O
|
// TODO - memory mapped I/O
|
||||||
|
|
||||||
return cpu;
|
return cpu;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -264,10 +262,9 @@ namespace Debugger
|
||||||
|
|
||||||
// Regions
|
// Regions
|
||||||
cpu->AddRegion(0x0000, 0x7FFF, true, true, "ROM");
|
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
|
// TODO - rename some I/O ports
|
||||||
|
|
||||||
return cpu;
|
return cpu;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue