NESHawk - GoodNES has Othello (HES) wrong and the good dump is labeled as o and the bad dump is labeled good, fix this in our db. Also added a hack to the board to allow the bad dump to run, if it weren't clearly labeled good in goodNES, I wouldn't have bothered, but it is the likely one for someone to attempt to run, and it does work in other emulators
This commit is contained in:
parent
c7f2ea1a9a
commit
2ca5a0b18b
|
@ -166,6 +166,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
public override byte ReadPRG(int addr)
|
||||
{
|
||||
addr |= (prg_bank_32k << 15);
|
||||
|
||||
if (ROM.Length < 0x8000) // GoodNES labels a version of Othello (HES) with only 16kb prg as the good dump. We will consider GoodNES wrong and label this as a bad dump, but this hack allows it to run just fine
|
||||
{
|
||||
addr &= 0x3FFF;
|
||||
}
|
||||
|
||||
return ROM[addr];
|
||||
}
|
||||
|
||||
|
|
|
@ -95,6 +95,12 @@ sha1:F2A8BC888B888FA65DFB303126B130422E34942E G Kunio 8-in-1 [p1] NES board=MAP
|
|||
sha1:27AA5F60474600FEE5C1623D4A0985421680C9FE H Mario + Toad (Nuts & Milk Hack) NES board=MAPPER000
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;-----------------------------------------------------------------------
|
||||
;goodNES is wrong about these
|
||||
sha1:9B75165461B58E3B49592E5E4BBF049FBD1401F6 G Othello (HES) NES board=MAPPER113
|
||||
sha1:C10C526F26273C4A1E180B968665910B74C78B86 B Othello (HES) (Bad Dump) NES board=MAPPER113
|
||||
sha1:000FC8E835AE78F0A41552912787D993BF9EAE7E B Othello (HES) (Bad Dump) NES board=MAPPER113
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;-
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;-----------------------------------------------------------------------
|
||||
;heres another idea. let's list rom sets from goodNES, good and bad variants together
|
||||
|
|
Loading…
Reference in New Issue