1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Restores SG1000 compatibility.

This commit is contained in:
Thomas Harte 2018-10-18 19:13:15 -04:00
parent 1fc88c4eff
commit 0278d5b61c

View File

@ -360,8 +360,8 @@ class ConcreteMachine:
map(read_pointers_, nullptr, 0xc000, 0x0000);
}
// Throw the BIOS on top if it isn't disabled.
if(!(memory_control_ & 0x08)) {
// Throw the BIOS on top if this machine has one and it isn't disabled.
if(model_ == Analyser::Static::Sega::Target::Model::MasterSystem && !(memory_control_ & 0x08)) {
map(read_pointers_, bios_, 8*1024, 0);
}
}