A7800 mapper fix

This commit is contained in:
alyosha-tas 2018-11-17 14:46:22 -06:00
parent f91c14e42e
commit d465ddbf53
1 changed files with 2 additions and 0 deletions

View File

@ -58,10 +58,12 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
int temp_addr = addr - 0x8000; int temp_addr = addr - 0x8000;
return Core._rom[temp_addr + (bank + 1) * 0x4000]; return Core._rom[temp_addr + (bank + 1) * 0x4000];
} }
/*
else if (Core.is_pokey) else if (Core.is_pokey)
{ {
return Core.pokey.ReadReg(addr & 0xF); return Core.pokey.ReadReg(addr & 0xF);
} }
*/
else else
{ {
// return the 16k extra ROM (located at beginning of file) // return the 16k extra ROM (located at beginning of file)