Style nits, C89 build fixes
This commit is contained in:
@@ -45,7 +45,7 @@ static uint8 adder;
|
||||
static uint8 test;
|
||||
static uint8 dipSwitch;
|
||||
|
||||
static writefunc cpuWriteHandlers[0x10000]; // Actual write handlers for CPU write trapping as a method fo IRQ clocking
|
||||
static writefunc cpuWriteHandlers[0x10000]; /* Actual write handlers for CPU write trapping as a method fo IRQ clocking */
|
||||
|
||||
static SFORMAT JYASIC_stateRegs[] = {
|
||||
{ &irqControl, 1, "IRQM" },
|
||||
@@ -96,50 +96,69 @@ static void syncPRG (int AND, int OR) {
|
||||
prg6000 =rev(prg[3]);
|
||||
break;
|
||||
}
|
||||
if (mode[0] &0x80) // Map ROM
|
||||
if (mode[0] &0x80) /* Map ROM */
|
||||
setprg8 (0x6000, prg6000 &AND |OR);
|
||||
else
|
||||
if (WRAMSIZE) // Otherwise map WRAM if it exists
|
||||
if (WRAMSIZE) /* Otherwise map WRAM if it exists */
|
||||
setprg8r(0x10, 0x6000, 0);
|
||||
}
|
||||
|
||||
static void syncCHR (int AND, int OR) {
|
||||
if (mode[3] &0x80 && (mode[0] &0x18) ==0x08) // MMC4 mode[0] with 4 KiB CHR mode[0]
|
||||
for (int chrBank =0; chrBank <8; chrBank +=4) setchr4(0x400 *chrBank, chr[latch[chrBank /4]&2 | chrBank] &AND >>2 | OR >>2);
|
||||
else
|
||||
switch(mode[0] &0x18) {
|
||||
case 0x00: // 8 KiB CHR mode[0]
|
||||
setchr8(chr[0] &AND >>3 | OR >>3);
|
||||
break;
|
||||
case 0x08: // 4 KiB CHR mode[0]
|
||||
for (int chrBank =0; chrBank <8; chrBank +=4) setchr4(0x400 *chrBank, chr[chrBank] &AND >>2 | OR >>2);
|
||||
break;
|
||||
case 0x10:
|
||||
for (int chrBank =0; chrBank <8; chrBank +=2) setchr2(0x400 *chrBank, chr[chrBank] &AND >>1 | OR >>1);
|
||||
break;
|
||||
case 0x18:
|
||||
for (int chrBank =0; chrBank <8; chrBank +=1) setchr1(0x400 *chrBank, chr[chrBank] &AND | OR );
|
||||
break;
|
||||
}
|
||||
PPUCHRRAM =mode[2] &0x40? 0xFF: 0x00; // Write-protect or write-enable CHR-RAM
|
||||
static void syncCHR (int AND, int OR)
|
||||
{
|
||||
if (mode[3] &0x80 && (mode[0] &0x18) ==0x08) /* MMC4 mode[0] with 4 KiB CHR mode[0] */
|
||||
for (int chrBank =0; chrBank <8; chrBank +=4) setchr4(0x400 *chrBank, chr[latch[chrBank /4]&2 | chrBank] &AND >>2 | OR >>2);
|
||||
else
|
||||
switch(mode[0] &0x18) {
|
||||
case 0x00: /* 8 KiB CHR mode[0] */
|
||||
setchr8(chr[0] &AND >>3 | OR >>3);
|
||||
break;
|
||||
case 0x08: /* 4 KiB CHR mode[0] */
|
||||
for (int chrBank =0; chrBank <8; chrBank +=4) setchr4(0x400 *chrBank, chr[chrBank] &AND >>2 | OR >>2);
|
||||
break;
|
||||
case 0x10:
|
||||
for (int chrBank =0; chrBank <8; chrBank +=2) setchr2(0x400 *chrBank, chr[chrBank] &AND >>1 | OR >>1);
|
||||
break;
|
||||
case 0x18:
|
||||
for (int chrBank =0; chrBank <8; chrBank +=1) setchr1(0x400 *chrBank, chr[chrBank] &AND | OR );
|
||||
break;
|
||||
}
|
||||
PPUCHRRAM =mode[2] &0x40? 0xFF: 0x00; /* Write-protect or write-enable CHR-RAM */
|
||||
}
|
||||
|
||||
static void syncNT (int AND, int OR) {
|
||||
if (mode[0] &0x20 || mode[1] &0x08) { // ROM nametables or extended mirroring
|
||||
// First, set normal CIRAM pages using extended registers ...
|
||||
setmirrorw(nt[0] &1, nt[1] &1, nt[2] &1, nt[3] &1);
|
||||
|
||||
if (mode[0] &0x20) for (int ntBank =0; ntBank <4; ntBank++) { // Then replace with ROM nametables if such are generally enabled
|
||||
int vromHere =(nt[ntBank] &0x80) ^(mode[2] &0x80) |(mode[0] &0x40); // ROM nametables are used either when globally enabled via D000.6 or per-bank via B00x.7 vs. D002.7
|
||||
if (vromHere) setntamem(CHRptr[0] +0x400*((nt[ntBank] &AND | OR) & CHRmask1[0]), 0, ntBank);
|
||||
}
|
||||
} else
|
||||
switch (mode[1] &0x03) { // Regularly mirrored CIRAM
|
||||
case 0: setmirror(MI_V); break;
|
||||
case 1: setmirror(MI_H); break;
|
||||
case 2: setmirror(MI_0); break;
|
||||
case 3: setmirror(MI_1); break;
|
||||
}
|
||||
static void syncNT (int AND, int OR)
|
||||
{
|
||||
if (mode[0] &0x20 || mode[1] &0x08)
|
||||
{
|
||||
/* ROM nametables or extended mirroring */
|
||||
/* First, set normal CIRAM pages using extended registers ... */
|
||||
setmirrorw(nt[0] &1, nt[1] &1, nt[2] &1, nt[3] &1);
|
||||
|
||||
if (mode[0] &0x20) for (int ntBank =0; ntBank <4; ntBank++)
|
||||
{
|
||||
/* Then replace with ROM nametables if such are generally enabled */
|
||||
int vromHere =(nt[ntBank] &0x80) ^(mode[2] &0x80) |(mode[0] &0x40);
|
||||
/* ROM nametables are used either when globally enabled via D000.6 or per-bank via B00x.7 vs. D002.7 */
|
||||
if (vromHere)
|
||||
setntamem(CHRptr[0] +0x400*((nt[ntBank] &AND | OR) & CHRmask1[0]), 0, ntBank);
|
||||
}
|
||||
}
|
||||
else
|
||||
switch (mode[1] &0x03)
|
||||
{
|
||||
/* Regularly mirrored CIRAM */
|
||||
case 0:
|
||||
setmirror(MI_V);
|
||||
break;
|
||||
case 1:
|
||||
setmirror(MI_H);
|
||||
break;
|
||||
case 2:
|
||||
setmirror(MI_0);
|
||||
break;
|
||||
case 3:
|
||||
setmirror(MI_1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void clockIRQ (void) {
|
||||
@@ -156,51 +175,87 @@ static void clockIRQ (void) {
|
||||
}
|
||||
}
|
||||
|
||||
static DECLFW(trapCPUWrite) {
|
||||
if ((irqControl &0x03) ==0x03) clockIRQ(); // Clock IRQ counter on CPU writes
|
||||
static DECLFW(trapCPUWrite)
|
||||
{
|
||||
if ((irqControl &0x03) ==0x03)
|
||||
clockIRQ(); /* Clock IRQ counter on CPU writes */
|
||||
cpuWriteHandlers[A](A, V);
|
||||
}
|
||||
|
||||
static void FP_FASTAPASS(1) trapPPUAddressChange (uint32 A) {
|
||||
if ((irqControl &0x03) ==0x02 && lastPPUAddress !=A) for (int i =0; i <2; i++) clockIRQ(); // Clock IRQ counter on PPU "reads"
|
||||
if (mode[3] &0x80 && (mode[0] &0x18) ==0x08 && ((A &0x2FF0) ==0xFD0 || (A &0x2FF0) ==0xFE0)) { // If MMC4 mode[0] is enabled, and CHR mode[0] is 4 KiB, and tile FD or FE is being fetched ...
|
||||
latch[A >>12 &1] =(A >>10 &4) | (A >>4 &2); // ... switch the left or right pattern table's latch to 0 (FD) or 2 (FE), being used as an offset for the CHR register index.
|
||||
sync();
|
||||
}
|
||||
lastPPUAddress =A;
|
||||
static void FP_FASTAPASS(1) trapPPUAddressChange (uint32 A)
|
||||
{
|
||||
if ((irqControl &0x03) ==0x02 && lastPPUAddress !=A)
|
||||
{
|
||||
int i;
|
||||
for (i =0; i <2; i++)
|
||||
clockIRQ(); /* Clock IRQ counter on PPU "reads" */
|
||||
}
|
||||
if (mode[3] &0x80 && (mode[0] &0x18) ==0x08 && ((A &0x2FF0) ==0xFD0 || (A &0x2FF0) ==0xFE0))
|
||||
{
|
||||
/* If MMC4 mode[0] is enabled, and CHR mode[0] is 4 KiB, and tile FD or FE is being fetched ... */
|
||||
latch[A >>12 &1] =(A >>10 &4) | (A >>4 &2); /* ... switch the left or right pattern table's latch to 0 (FD) or 2 (FE), being used as an offset for the CHR register index. */
|
||||
sync();
|
||||
}
|
||||
lastPPUAddress =A;
|
||||
}
|
||||
|
||||
static void ppuScanline(void) {
|
||||
if ((irqControl &0x03) ==0x01) for (int i =0; i <8; i++) clockIRQ(); // Clock IRQ counter on A12 rises (eight per scanline). This should be done in trapPPUAddressChange, but would require more accurate PPU emulation for that.
|
||||
static void ppuScanline(void)
|
||||
{
|
||||
if ((irqControl &0x03) ==0x01)
|
||||
{
|
||||
int i;
|
||||
for (i =0; i <8; i++)
|
||||
clockIRQ(); /* Clock IRQ counter on A12 rises (eight per scanline). This should be done in trapPPUAddressChange, but would require more accurate PPU emulation for that. */
|
||||
}
|
||||
}
|
||||
|
||||
void FP_FASTAPASS(1) cpuCycle(int a) {
|
||||
if ((irqControl &0x03) ==0x00) while (a--) clockIRQ(); // Clock IRQ counter on M2 cycles
|
||||
void FP_FASTAPASS(1) cpuCycle(int a)
|
||||
{
|
||||
if ((irqControl &0x03) ==0x00)
|
||||
while (a--)
|
||||
clockIRQ(); /* Clock IRQ counter on M2 cycles */
|
||||
}
|
||||
|
||||
static DECLFR(readALU_DIP) {
|
||||
if ((A &0x3FF) ==0 && A !=0x5800) // 5000, 5400, 5C00: read solder pad setting
|
||||
return dipSwitch | X.DB &0x3F;
|
||||
else
|
||||
if (A &0x800) switch (A &3) { // 5800-5FFF: read ALU
|
||||
case 0: return (mul[0] *mul[1]) &0xFF;
|
||||
case 1: return (mul[0] *mul[1]) >>8;
|
||||
case 2: return adder;
|
||||
case 3: return test;
|
||||
}
|
||||
// all others
|
||||
return X.DB;
|
||||
static DECLFR(readALU_DIP)
|
||||
{
|
||||
if ((A &0x3FF) ==0 && A !=0x5800) /* 5000, 5400, 5C00: read solder pad setting */
|
||||
return dipSwitch | X.DB &0x3F;
|
||||
|
||||
if (A &0x800)
|
||||
switch (A &3)
|
||||
{
|
||||
/* 5800-5FFF: read ALU */
|
||||
case 0:
|
||||
return (mul[0] *mul[1]) &0xFF;
|
||||
case 1:
|
||||
return (mul[0] *mul[1]) >>8;
|
||||
case 2:
|
||||
return adder;
|
||||
case 3:
|
||||
return test;
|
||||
}
|
||||
/* all others */
|
||||
return X.DB;
|
||||
}
|
||||
|
||||
static DECLFW(writeALU) {
|
||||
switch (A &3) {
|
||||
case 0: mul[0] =V; break;
|
||||
case 1: mul[1] =V; break;
|
||||
case 2: adder +=V; break;
|
||||
case 3: test =V;
|
||||
adder =0;
|
||||
break;
|
||||
}
|
||||
static DECLFW(writeALU)
|
||||
{
|
||||
switch (A &3)
|
||||
{
|
||||
case 0:
|
||||
mul[0] =V;
|
||||
break;
|
||||
case 1:
|
||||
mul[1] =V;
|
||||
break;
|
||||
case 2:
|
||||
adder +=V;
|
||||
break;
|
||||
case 3:
|
||||
test = V;
|
||||
adder = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static DECLFW(writePRG) {
|
||||
@@ -226,258 +281,349 @@ static DECLFW(writeNT) {
|
||||
sync();
|
||||
}
|
||||
|
||||
static DECLFW(writeIRQ) {
|
||||
switch (A &7) {
|
||||
case 0: irqEnabled =!!(V &1);
|
||||
if (!irqEnabled) {
|
||||
irqPrescaler =0;
|
||||
X6502_IRQEnd(FCEU_IQEXT);
|
||||
}
|
||||
break;
|
||||
case 1: irqControl =V;
|
||||
break;
|
||||
case 2: irqEnabled =0;
|
||||
irqPrescaler =0;
|
||||
X6502_IRQEnd(FCEU_IQEXT);
|
||||
break;
|
||||
case 3: irqEnabled =1;
|
||||
break;
|
||||
case 4: irqPrescaler =V ^irqXor;
|
||||
break;
|
||||
case 5: irqCounter =V ^irqXor;
|
||||
break;
|
||||
case 6: irqXor =V;
|
||||
break;
|
||||
}
|
||||
static DECLFW(writeIRQ)
|
||||
{
|
||||
switch (A &7)
|
||||
{
|
||||
case 0:
|
||||
irqEnabled =!!(V &1);
|
||||
if (!irqEnabled)
|
||||
{
|
||||
irqPrescaler =0;
|
||||
X6502_IRQEnd(FCEU_IQEXT);
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
irqControl =V;
|
||||
break;
|
||||
case 2:
|
||||
irqEnabled =0;
|
||||
irqPrescaler =0;
|
||||
X6502_IRQEnd(FCEU_IQEXT);
|
||||
break;
|
||||
case 3:
|
||||
irqEnabled =1;
|
||||
break;
|
||||
case 4:
|
||||
irqPrescaler =V ^irqXor;
|
||||
break;
|
||||
case 5:
|
||||
irqCounter =V ^irqXor;
|
||||
break;
|
||||
case 6:
|
||||
irqXor =V;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static DECLFW(writeMode) {
|
||||
switch (A &3) {
|
||||
case 0: mode[0] =V;
|
||||
if (!allowExtendedMirroring) mode[0] &=~0x20;
|
||||
break;
|
||||
case 1: mode[1] =V;
|
||||
if (!allowExtendedMirroring) mode[1] &=~0x08;
|
||||
break;
|
||||
case 2: mode[2] =V;
|
||||
break;
|
||||
case 3: mode[3] =V;
|
||||
break;
|
||||
}
|
||||
static DECLFW(writeMode)
|
||||
{
|
||||
switch (A &3)
|
||||
{
|
||||
case 0:
|
||||
mode[0] =V;
|
||||
if (!allowExtendedMirroring)
|
||||
mode[0] &=~0x20;
|
||||
break;
|
||||
case 1:
|
||||
mode[1] =V;
|
||||
if (!allowExtendedMirroring)
|
||||
mode[1] &=~0x08;
|
||||
break;
|
||||
case 2:
|
||||
mode[2] =V;
|
||||
break;
|
||||
case 3:
|
||||
mode[3] =V;
|
||||
break;
|
||||
}
|
||||
sync();
|
||||
}
|
||||
|
||||
static void JYASIC_power(void) {
|
||||
SetWriteHandler(0x5000, 0x5FFF, writeALU);
|
||||
SetWriteHandler(0x6000, 0x7fff, CartBW);
|
||||
SetWriteHandler(0x8000, 0x87FF, writePRG); // 8800-8FFF ignored
|
||||
SetWriteHandler(0x9000, 0x97FF, writeCHRLow); // 9800-9FFF ignored
|
||||
SetWriteHandler(0xA000, 0xA7FF, writeCHRHigh); // A800-AFFF ignored
|
||||
SetWriteHandler(0xB000, 0xB7FF, writeNT); // B800-BFFF ignored
|
||||
SetWriteHandler(0xC000, 0xCFFF, writeIRQ);
|
||||
SetWriteHandler(0xD000, 0xD7FF, writeMode); // D800-DFFF ignored
|
||||
|
||||
for (unsigned int i =0; i <0x10000; i++) cpuWriteHandlers[i] =GetWriteHandler(i);
|
||||
SetWriteHandler(0x0000, 0xFFFF, trapCPUWrite); // Trap all CPU writes for IRQ clocking purposes
|
||||
static void JYASIC_power(void)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
SetReadHandler(0x5000, 0x5FFF, readALU_DIP);
|
||||
SetReadHandler(0x6000, 0xFFFF, CartBR);
|
||||
SetWriteHandler(0x5000, 0x5FFF, writeALU);
|
||||
SetWriteHandler(0x6000, 0x7fff, CartBW);
|
||||
SetWriteHandler(0x8000, 0x87FF, writePRG); /* 8800-8FFF ignored */
|
||||
SetWriteHandler(0x9000, 0x97FF, writeCHRLow); /* 9800-9FFF ignored */
|
||||
SetWriteHandler(0xA000, 0xA7FF, writeCHRHigh); /* A800-AFFF ignored */
|
||||
SetWriteHandler(0xB000, 0xB7FF, writeNT); /* B800-BFFF ignored */
|
||||
SetWriteHandler(0xC000, 0xCFFF, writeIRQ);
|
||||
SetWriteHandler(0xD000, 0xD7FF, writeMode); /* D800-DFFF ignored */
|
||||
|
||||
mul[0] = mul[1] = adder = test = dipSwitch = 0;
|
||||
mode[0] = mode[1] = mode[2] = mode[3] =0;
|
||||
irqControl =irqEnabled = irqPrescaler =irqCounter = irqXor = lastPPUAddress = 0;
|
||||
memset(prg, 0, sizeof(prg));
|
||||
memset(chr, 0, sizeof(chr));
|
||||
memset(nt, 0, sizeof(nt));
|
||||
latch[0] =0;
|
||||
latch[1] =4;
|
||||
|
||||
sync();
|
||||
for (i =0; i <0x10000; i++) cpuWriteHandlers[i] =GetWriteHandler(i);
|
||||
SetWriteHandler(0x0000, 0xFFFF, trapCPUWrite); /* Trap all CPU writes for IRQ clocking purposes */
|
||||
|
||||
SetReadHandler(0x5000, 0x5FFF, readALU_DIP);
|
||||
SetReadHandler(0x6000, 0xFFFF, CartBR);
|
||||
|
||||
mul[0] = mul[1] = adder = test = dipSwitch = 0;
|
||||
mode[0] = mode[1] = mode[2] = mode[3] = 0;
|
||||
irqControl =irqEnabled = irqPrescaler =irqCounter = irqXor = lastPPUAddress = 0;
|
||||
memset(prg, 0, sizeof(prg));
|
||||
memset(chr, 0, sizeof(chr));
|
||||
memset(nt, 0, sizeof(nt));
|
||||
latch[0] =0;
|
||||
latch[1] =4;
|
||||
|
||||
sync();
|
||||
}
|
||||
|
||||
static void JYASIC_reset (void) {
|
||||
static void JYASIC_reset (void)
|
||||
{
|
||||
dipSwitch = (dipSwitch +0x40) &0xC0;
|
||||
}
|
||||
|
||||
static void JYASIC_restore (int version) {
|
||||
static void JYASIC_restore (int version)
|
||||
{
|
||||
sync();
|
||||
}
|
||||
|
||||
void JYASIC_init (CartInfo *info) {
|
||||
info->Reset = JYASIC_reset;
|
||||
info->Power = JYASIC_power;
|
||||
PPU_hook = trapPPUAddressChange;
|
||||
MapIRQHook = cpuCycle;
|
||||
GameHBIRQHook2 = ppuScanline;
|
||||
AddExState(JYASIC_stateRegs, ~0, 0, 0);
|
||||
GameStateRestore = JYASIC_restore;
|
||||
void JYASIC_init (CartInfo *info)
|
||||
{
|
||||
info->Reset = JYASIC_reset;
|
||||
info->Power = JYASIC_power;
|
||||
PPU_hook = trapPPUAddressChange;
|
||||
MapIRQHook = cpuCycle;
|
||||
GameHBIRQHook2 = ppuScanline;
|
||||
AddExState(JYASIC_stateRegs, ~0, 0, 0);
|
||||
GameStateRestore = JYASIC_restore;
|
||||
|
||||
// WRAM is present only in iNES mapper 35, or in mappers with numbers above 255 that require NES 2.0, which explicitly denotes WRAM size
|
||||
if (info->iNES2)
|
||||
WRAMSIZE =info->PRGRamSize + info->PRGRamSaveSize;
|
||||
else
|
||||
WRAMSIZE =info->mapper ==35? 8192: 0;
|
||||
/* WRAM is present only in iNES mapper 35, or in mappers with numbers above 255 that require NES 2.0, which explicitly denotes WRAM size */
|
||||
if (info->iNES2)
|
||||
WRAMSIZE =info->PRGRamSize + info->PRGRamSaveSize;
|
||||
else
|
||||
WRAMSIZE =info->mapper ==35? 8192: 0;
|
||||
|
||||
if (WRAMSIZE) {
|
||||
WRAM = (uint8*)FCEU_gmalloc(WRAMSIZE);
|
||||
SetupCartPRGMapping(0x10, WRAM, WRAMSIZE, 1);
|
||||
FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM);
|
||||
}
|
||||
if (WRAMSIZE)
|
||||
{
|
||||
WRAM = (uint8*)FCEU_gmalloc(WRAMSIZE);
|
||||
SetupCartPRGMapping(0x10, WRAM, WRAMSIZE, 1);
|
||||
FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM);
|
||||
}
|
||||
}
|
||||
|
||||
static void syncSingleCart (void) {
|
||||
syncPRG(0x3F, mode[3] <<5 &~0x3F);
|
||||
if (mode[3] &0x20) {
|
||||
syncCHR(0x1FF, mode[3] <<6 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<6 &0x600);
|
||||
} else {
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
}
|
||||
static void syncSingleCart (void)
|
||||
{
|
||||
syncPRG(0x3F, mode[3] <<5 &~0x3F);
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<6 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<6 &0x600);
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
}
|
||||
}
|
||||
void Mapper35_Init(CartInfo *info) { // Basically mapper 90/209/211 with WRAM
|
||||
void Mapper35_Init(CartInfo *info)
|
||||
{
|
||||
/* Basically mapper 90/209/211 with WRAM */
|
||||
allowExtendedMirroring =1;
|
||||
sync =syncSingleCart;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
void Mapper90_Init(CartInfo *info) { // Single cart, extended mirroring and ROM nametables disabled
|
||||
void Mapper90_Init(CartInfo *info)
|
||||
{
|
||||
/* Single cart, extended mirroring and ROM nametables disabled */
|
||||
allowExtendedMirroring =0;
|
||||
sync =syncSingleCart;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
void Mapper209_Init(CartInfo *info) { // Single cart, extended mirroring and ROM nametables enabled
|
||||
allowExtendedMirroring =1;
|
||||
sync =syncSingleCart;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
void Mapper211_Init(CartInfo *info) { // Duplicate of mapper 209
|
||||
|
||||
void Mapper209_Init(CartInfo *info)
|
||||
{
|
||||
/* Single cart, extended mirroring and ROM nametables enabled */
|
||||
allowExtendedMirroring =1;
|
||||
sync =syncSingleCart;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
static void sync281 (void) {
|
||||
syncPRG(0x1F, mode[3] <<5);
|
||||
syncCHR(0xFF, mode[3] <<8);
|
||||
syncNT (0xFF, mode[3] <<8);
|
||||
void Mapper211_Init(CartInfo *info)
|
||||
{
|
||||
/* Duplicate of mapper 209 */
|
||||
allowExtendedMirroring =1;
|
||||
sync =syncSingleCart;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
void Mapper281_Init(CartInfo *info) { // Multicart
|
||||
|
||||
static void sync281 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<5);
|
||||
syncCHR(0xFF, mode[3] <<8);
|
||||
syncNT (0xFF, mode[3] <<8);
|
||||
}
|
||||
|
||||
void Mapper281_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync281;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
static void sync282 (void) {
|
||||
static void sync282 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
if (mode[3] &0x20) {
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<6 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<6 &0x600);
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<6 &0x600);
|
||||
}
|
||||
}
|
||||
void Mapper282_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper282_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync282;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync295 (void) {
|
||||
syncPRG(0x0F, mode[3] <<4);
|
||||
syncCHR(0x7F, mode[3] <<7);
|
||||
syncNT (0x7F, mode[3] <<7);
|
||||
void sync295 (void)
|
||||
{
|
||||
syncPRG(0x0F, mode[3] <<4);
|
||||
syncCHR(0x7F, mode[3] <<7);
|
||||
syncNT (0x7F, mode[3] <<7);
|
||||
}
|
||||
void Mapper295_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper295_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync295;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync358 (void) {
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
if (mode[3] &0x20) {
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
} else {
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
}
|
||||
void sync358 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
}
|
||||
}
|
||||
void Mapper358_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper358_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync358;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync386 (void) {
|
||||
syncPRG(0x1F, mode[3] <<4 &0x20 | mode[3] <<3 &0x40);
|
||||
if (mode[3] &0x20) {
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
} else {
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
}
|
||||
void sync386 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<4 &0x20 | mode[3] <<3 &0x40);
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
}
|
||||
}
|
||||
void Mapper386_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper386_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync386;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync387 (void) {
|
||||
void sync387(void)
|
||||
{
|
||||
syncPRG(0x0F, mode[3] <<3 &0x10 | mode[3] <<2 &0x20);
|
||||
if (mode[3] &0x20) {
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
} else {
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<7 &0x600);
|
||||
syncNT (0x1FF, mode[3] <<7 &0x600);
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<7 &0x600);
|
||||
}
|
||||
}
|
||||
void Mapper387_Init(CartInfo *info) { // Multicart
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync387;
|
||||
JYASIC_init(info);
|
||||
|
||||
void Mapper387_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync387;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync388 (void) {
|
||||
syncPRG(0x1F, mode[3] <<3 &0x60);
|
||||
if (mode[3] &0x20) {
|
||||
syncCHR(0x1FF, mode[3] <<8 &0x200);
|
||||
syncNT (0x1FF, mode[3] <<8 &0x200);
|
||||
} else {
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<8 &0x200);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<8 &0x200);
|
||||
}
|
||||
void sync388 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<3 &0x60);
|
||||
|
||||
if (mode[3] &0x20)
|
||||
{
|
||||
syncCHR(0x1FF, mode[3] <<8 &0x200);
|
||||
syncNT (0x1FF, mode[3] <<8 &0x200);
|
||||
}
|
||||
else
|
||||
{
|
||||
syncCHR(0x0FF, mode[3] <<8 &0x100 | mode[3] <<8 &0x200);
|
||||
syncNT (0x0FF, mode[3] <<8 &0x100 | mode[3] <<8 &0x200);
|
||||
}
|
||||
}
|
||||
void Mapper388_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper388_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =0;
|
||||
sync =sync388;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync397 (void) {
|
||||
void sync397 (void)
|
||||
{
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
syncCHR(0x7F, mode[3] <<7);
|
||||
syncNT (0x7F, mode[3] <<7);
|
||||
}
|
||||
void Mapper397_Init(CartInfo *info) { // Multicart
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync397;
|
||||
JYASIC_init(info);
|
||||
|
||||
void Mapper397_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync397;
|
||||
JYASIC_init(info);
|
||||
}
|
||||
|
||||
void sync421 (void) {
|
||||
if (mode[3] &0x04)
|
||||
syncPRG(0x3F, mode[3] <<4 &~0x3F);
|
||||
else
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
syncCHR(0x1FF, mode[3] <<8 &0x300);
|
||||
syncNT (0x1FF, mode[3] <<8 &0x300);
|
||||
void sync421 (void)
|
||||
{
|
||||
if (mode[3] &0x04)
|
||||
syncPRG(0x3F, mode[3] <<4 &~0x3F);
|
||||
else
|
||||
syncPRG(0x1F, mode[3] <<4 &~0x1F);
|
||||
syncCHR(0x1FF, mode[3] <<8 &0x300);
|
||||
syncNT (0x1FF, mode[3] <<8 &0x300);
|
||||
}
|
||||
void Mapper421_Init(CartInfo *info) { // Multicart
|
||||
|
||||
void Mapper421_Init(CartInfo *info)
|
||||
{
|
||||
/* Multicart */
|
||||
allowExtendedMirroring =1;
|
||||
sync =sync421;
|
||||
JYASIC_init(info);
|
||||
|
||||
Reference in New Issue
Block a user