mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-25 18:30:21 +00:00
Adjusted Super Chip test to look for two portions of 128 bytes. It now spots Dig Dug and doesn't acquire any further false positives amongst the tested set. So failure to spot the Activision stack-based paging mechanism is now the only remaining failure.
This commit is contained in:
parent
cae48aaa95
commit
8c5e39c0c5
@ -179,13 +179,15 @@ static void DeterminePagingForCartridge(StaticAnalyser::Target &target, const St
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check for a Super Chip. Atari ROM images [almost] always have the same value stored over RAM
|
// check for a Super Chip. Atari ROM images [almost] always have the same value stored over RAM
|
||||||
// regions.
|
// regions; when they don't they at least seem to have the first 128 bytes be the same as the
|
||||||
if(target.atari.paging_model != StaticAnalyser::Atari2600PagingModel::CBSRamPlus && target.atari.paging_model != StaticAnalyser::Atari2600PagingModel::MNetwork)
|
// next 128 bytes. So check for that.
|
||||||
|
if( target.atari.paging_model != StaticAnalyser::Atari2600PagingModel::CBSRamPlus &&
|
||||||
|
target.atari.paging_model != StaticAnalyser::Atari2600PagingModel::MNetwork)
|
||||||
{
|
{
|
||||||
bool has_superchip = true;
|
bool has_superchip = true;
|
||||||
for(size_t address = 0; address < 256; address++)
|
for(size_t address = 0; address < 128; address++)
|
||||||
{
|
{
|
||||||
if(segment.data[address] != segment.data[0])
|
if(segment.data[address] != segment.data[address+128])
|
||||||
{
|
{
|
||||||
has_superchip = false;
|
has_superchip = false;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user