NES - fix IREM_TAM_S1 (mapper 97) Kaiketsu Yanchamaru (Kid Niki (j)) now works

This commit is contained in:
andres.delikat 2011-09-21 23:35:41 +00:00
parent 3e47de6f24
commit 0ea0e3ef96
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ Open bus and bus conflict emulation is not considered complete or thorough in an
094 Misc (J) Nothing (easy)
095 MMC3Variant Complete
096 Misc (J) Nothing
097 Misc (J) Implemented but doesn't work(easy)
097 Misc (J) Complete
105 NES-EVENT ~NEEDED~
107 Unlicensed Complete
112 Misc (CN) Nothing

View File

@ -25,7 +25,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
}
SetMirrorType(Cart.pad_h, Cart.pad_v);
prg_bank_mask_16k = (Cart.prg_size / 16) - 1;
prg_banks_16k[1] = 0xFF;
prg_banks_16k[0] = 0xFF;
return true;
}
@ -45,7 +45,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
void SyncPRG()
{
prg_banks_16k[0] = prg_bank_16k;
prg_banks_16k[1] = prg_bank_16k;
}
public override void WritePRG(int addr, byte value)