Revise mapper 354.0 to support 650-in-1.
This commit is contained in:
@@ -33,7 +33,11 @@ static SFORMAT StateRegs[] =
|
||||
|
||||
static void Mapper354_Sync(void)
|
||||
{
|
||||
int prg =latchData &0x3F | latchAddr <<2 &0x40 | latchAddr >>5 &0x80;
|
||||
int prg;
|
||||
if (submapper == 1)
|
||||
prg = latchData &0x3F | latchAddr <<2 &0x40 | latchAddr >>5 &0x80;
|
||||
else
|
||||
prg = latchData &0x3F | latchAddr <<4 &0x40;
|
||||
switch(latchAddr &7)
|
||||
{
|
||||
case 0: case 4:
|
||||
|
||||
Reference in New Issue
Block a user