Update ines-correct based on latest tests, update m36...

- Update exiting game database based on latest changes and testing (reference nesdev for one)
- Update mapper 36, supports F-15 City War (Spain) (Gluk Video) (Unl)
- add Reset function to m177, fixes games freezing when reset is pressed (might not be a hardware behavior, but its annoying for emulators :D)
This commit is contained in:
retro-wertz
2019-06-16 16:39:52 +08:00
parent 27a71cc3fb
commit 650bc4579a
4 changed files with 76 additions and 31 deletions

View File

@@ -59,6 +59,11 @@ static void M177Close(void) {
WRAM = NULL;
}
static void M177Reset(void) {
reg = 0;
Sync();
}
static void StateRestore(int version) {
Sync();
}
@@ -66,6 +71,7 @@ static void StateRestore(int version) {
void Mapper177_Init(CartInfo *info) {
info->Power = M177Power;
info->Close = M177Close;
info->Reset = M177Reset;
GameStateRestore = StateRestore;
WRAMSIZE = 8192;