2025-04-10 18:35:30 +02:00
|
|
|
/* FCE Ultra - NES/Famicom Emulator
|
|
|
|
|
*
|
|
|
|
|
* Copyright notice for this file:
|
|
|
|
|
* Copyright (C) 2025 NewRisingSun
|
|
|
|
|
*
|
|
|
|
|
* 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"
|
2025-09-01 01:13:46 +02:00
|
|
|
#include "asic_vrc2and4.h"
|
2025-04-10 18:35:30 +02:00
|
|
|
|
|
|
|
|
static uint8 nt[4];
|
|
|
|
|
static uint8 prg;
|
|
|
|
|
|
|
|
|
|
static SFORMAT stateRegs[] ={
|
|
|
|
|
{ nt, 4, "EXPN" },
|
|
|
|
|
{ &prg, 1, "PRGC" },
|
|
|
|
|
{ 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void sync () {
|
|
|
|
|
int bank;
|
|
|
|
|
VRC24_syncWRAM(0);
|
|
|
|
|
VRC24_syncPRG(0x01F, 0x000);
|
|
|
|
|
VRC24_syncCHR(0x1FF, 0x000);
|
|
|
|
|
setmirrorw(nt[0] &1, nt[1] &1, nt[2] &1, nt[3] &1);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-01 01:13:46 +02:00
|
|
|
int Mapper559_getPRGBank(uint8 bank) {
|
2025-04-10 18:35:30 +02:00
|
|
|
return bank ==2? prg: VRC24_getPRGBank(bank);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DECLFW(Mapper559_externalSelect) {
|
|
|
|
|
if (A &4)
|
|
|
|
|
nt[A &3] =V;
|
|
|
|
|
else
|
|
|
|
|
prg =V;
|
2025-09-01 01:13:46 +02:00
|
|
|
sync();
|
2025-04-10 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DECLFW(Mapper559_nibblizeData) {
|
|
|
|
|
VRC24_writeReg(A, V >>(A &0x400? 4: 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Mapper559_power (void) {
|
|
|
|
|
nt[0] =nt[1] =0xE0;
|
|
|
|
|
nt[2] =nt[3] =0xE1;
|
|
|
|
|
prg =0xFE;
|
|
|
|
|
VRC24_power();
|
|
|
|
|
SetWriteHandler(0xB000, 0xFFFF, Mapper559_nibblizeData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Mapper559_Init (CartInfo *info) {
|
2025-09-01 01:13:46 +02:00
|
|
|
VRC4_init(info, sync, 0x400, 0x800, 1, Mapper559_getPRGBank, NULL, NULL, NULL, Mapper559_externalSelect);
|
2025-04-10 18:35:30 +02:00
|
|
|
info->Power =Mapper559_power;
|
|
|
|
|
AddExState(stateRegs, ~0, 0, 0);
|
|
|
|
|
}
|