Add mapper 567.
This commit is contained in:
71
src/boards/567.c
Normal file
71
src/boards/567.c
Normal file
@@ -0,0 +1,71 @@
|
||||
/* FCEUmm - NES/Famicom Emulator
|
||||
*
|
||||
* Copyright notice for this file:
|
||||
* Copyright (C) 2020
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include "mapinc.h"
|
||||
#include "asic_mmc3.h"
|
||||
|
||||
static uint8 reg;
|
||||
|
||||
static void sync() {
|
||||
MMC3_syncPRG(0x0F, reg <<4);
|
||||
if (reg == 0x0F)
|
||||
MMC3_syncCHR(0x1FF, 0x400);
|
||||
else
|
||||
MMC3_syncCHR(0x07F, reg <<7 &0x380);
|
||||
MMC3_syncMirror();
|
||||
}
|
||||
|
||||
static int getPRGBank(uint8 bank) {
|
||||
if (reg == 0x08) {
|
||||
return MMC3_getPRGBank(bank &1) &~3 | bank &3;
|
||||
} else
|
||||
return MMC3_getPRGBank(bank);
|
||||
}
|
||||
|
||||
static int getCHRBank(uint8 bank) {
|
||||
if (reg == 0x0F)
|
||||
return MMC3_getCHRBank(bank &6 | bank >>1 &1) <<1 | bank &1;
|
||||
else
|
||||
return MMC3_getCHRBank(bank);
|
||||
}
|
||||
|
||||
static DECLFW(writeReg) {
|
||||
reg = A &0xFF;
|
||||
sync();
|
||||
}
|
||||
|
||||
static void reset() {
|
||||
reg = 0;
|
||||
sync();
|
||||
}
|
||||
|
||||
static void power() {
|
||||
reg = 0;
|
||||
MMC3_power();
|
||||
}
|
||||
|
||||
void Mapper567_Init(CartInfo *info) {
|
||||
MMC3_init(info, sync, MMC3_TYPE_SHARP, getPRGBank, getCHRBank, NULL, writeReg);
|
||||
info->Power = power;
|
||||
info->Reset = reset;
|
||||
AddExState(®, 1, 0, "EXPR");
|
||||
}
|
||||
@@ -950,6 +950,7 @@ INES_BOARD_BEGIN()
|
||||
INES_BOARD( "Bung Super Game Doctor", 561, Mapper561_562_Init )
|
||||
INES_BOARD( "Venus Turbo Game Doctor", 562, Mapper561_562_Init )
|
||||
INES_BOARD( "J-2020", 563, Mapper563_Init )
|
||||
INES_BOARD( "Top Ten Variety (SF III)", 567, Mapper567_Init )
|
||||
INES_BOARD( "T-215", 579, Mapper579_Init )
|
||||
INES_BOARD( "ET-82", 581, Mapper581_Init )
|
||||
INES_BOARD( "HN-02", 586, Mapper586_Init )
|
||||
|
||||
@@ -415,6 +415,7 @@ void Mapper558_Init(CartInfo *);
|
||||
void Mapper559_Init(CartInfo *);
|
||||
void Mapper561_562_Init(CartInfo *);
|
||||
void Mapper563_Init(CartInfo *);
|
||||
void Mapper567_Init(CartInfo *);
|
||||
void Mapper579_Init(CartInfo *);
|
||||
void Mapper581_Init(CartInfo *);
|
||||
void Mapper586_Init(CartInfo *);
|
||||
|
||||
Reference in New Issue
Block a user