1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 02:17:08 +00:00

Fix base RAM mapping.

This commit is contained in:
Thomas Harte
2023-01-13 09:31:56 -05:00
parent 23ff3fc366
commit befc81743a
3 changed files with 18 additions and 3 deletions
+1 -1
View File
@@ -255,7 +255,7 @@ class ConcreteMachine:
}
memory_slots_[0].map(0, 0, 0, 32768);
memory_slots_[3].map(0, 0, 0, 65536);
memory_slots_[3].template map<MemorySlot::AccessType::ReadWrite>(0, 0, 0, 65536);
// Add a disk cartridge if any disks were supplied.
if(target.has_disk_drive) {