2011-02-28 09:13:27 +00:00
|
|
|
using System;
|
2013-11-04 00:36:15 +00:00
|
|
|
using BizHawk.Common;
|
2011-02-28 09:13:27 +00:00
|
|
|
|
2013-11-14 13:15:41 +00:00
|
|
|
namespace BizHawk.Emulation.Cores.Nintendo.NES
|
2011-02-28 09:13:27 +00:00
|
|
|
{
|
2011-06-13 09:55:25 +00:00
|
|
|
//generally mapper 3
|
2011-02-28 09:13:27 +00:00
|
|
|
|
2011-03-01 09:32:12 +00:00
|
|
|
//Solomon's Key
|
|
|
|
//Arkanoid
|
|
|
|
//Arkista's Ring
|
|
|
|
//Bump 'n' Jump
|
|
|
|
//Cybernoid
|
|
|
|
|
2014-01-10 18:28:37 +00:00
|
|
|
/*
|
|
|
|
* What's going on here?
|
|
|
|
*
|
|
|
|
* 1. Security Diode should include all Mapper185 carts, but they aren't included?
|
|
|
|
* 2. Good luck ever getting bus conflicts right, considering all of the third party crap overloaded onto this mapper.
|
|
|
|
* 3. (Minor) Configuration shouldn't be serialized.
|
|
|
|
* 4. What is prg_mask? It's obviously a mask for swapping 16K prg banks... which this board never does.
|
|
|
|
* 5. Like on real CNROM, the reg writes are masked so only the lowest 2 bits show. But then:
|
|
|
|
* 5a. AssertChr(64); could never be handled correctly by this class.
|
|
|
|
* 5b. The copy protection check compares on bits of the chr reg that are always 0. Nonsensical.
|
|
|
|
* 5c. The real cart's security diodes, which are connected to higher data bits, are never actually read.
|
|
|
|
* 6. chr_enabled is forced to true after any PPU read, which is wrong. Probably a hack for #5; since the real security setting is never used.
|
|
|
|
* 7. Related to 5a; the AVE-74*161 implementation is busted.
|
|
|
|
*/
|
|
|
|
|
2012-10-17 00:25:46 +00:00
|
|
|
[NES.INESBoardImplPriority]
|
2013-08-25 01:08:17 +00:00
|
|
|
public sealed class CNROM : NES.NESBoardBase
|
2011-02-28 09:13:27 +00:00
|
|
|
{
|
2011-03-01 09:32:12 +00:00
|
|
|
//configuration
|
2011-03-07 10:41:46 +00:00
|
|
|
int prg_mask,chr_mask;
|
2011-09-25 03:28:35 +00:00
|
|
|
bool copyprotection;
|
|
|
|
bool chr_enabled = true;
|
2011-03-01 09:32:12 +00:00
|
|
|
bool bus_conflict;
|
|
|
|
|
|
|
|
//state
|
|
|
|
int chr;
|
|
|
|
|
2011-03-20 02:12:10 +00:00
|
|
|
public override bool Configure(NES.EDetectionOrigin origin)
|
2011-02-28 09:13:27 +00:00
|
|
|
{
|
2011-03-07 10:41:46 +00:00
|
|
|
//configure
|
2011-03-08 07:25:35 +00:00
|
|
|
switch (Cart.board_type)
|
2011-03-07 10:41:46 +00:00
|
|
|
{
|
2013-02-19 02:52:32 +00:00
|
|
|
case "MAPPER185":
|
2012-03-22 06:20:10 +00:00
|
|
|
case "MAPPER003":
|
2012-06-24 17:39:12 +00:00
|
|
|
//we assume no bus conflicts for generic unknown cases.
|
|
|
|
//this was done originally to support Colorful Dragon (Unl) (Sachen) which bugs out if bus conflicts are emulated
|
|
|
|
//Games which behave otherwise will force us to start entering these in the game DB
|
|
|
|
//Licensed titles below are more likely to have used the same original discrete logic design and so suffer from the conflicts
|
|
|
|
bus_conflict = false;
|
2012-03-22 06:20:10 +00:00
|
|
|
break;
|
2013-02-19 02:52:32 +00:00
|
|
|
|
2011-03-08 07:25:35 +00:00
|
|
|
case "NES-CNROM": //adventure island
|
2012-10-17 02:08:19 +00:00
|
|
|
case "UNIF_NES-CNROM": // some of these should be bus_conflict = false because UNIF is bad
|
2011-03-07 10:41:46 +00:00
|
|
|
case "HVC-CNROM":
|
2012-06-24 17:39:12 +00:00
|
|
|
bus_conflict = true;
|
2012-03-13 02:10:18 +00:00
|
|
|
AssertPrg(16, 32); AssertChr(8,16,32,64);
|
2011-03-07 10:41:46 +00:00
|
|
|
break;
|
2011-11-13 09:18:14 +00:00
|
|
|
case "KONAMI-CNROM": //gradius (J)
|
2012-06-24 17:39:12 +00:00
|
|
|
bus_conflict = true;
|
2011-11-13 09:18:14 +00:00
|
|
|
AssertPrg(32); AssertChr(32);
|
|
|
|
break;
|
2012-03-10 13:40:36 +00:00
|
|
|
case "AVE-74*161":
|
2012-06-24 17:39:12 +00:00
|
|
|
bus_conflict = true;
|
2012-03-10 13:40:36 +00:00
|
|
|
AssertPrg(32); AssertChr(64);
|
|
|
|
break;
|
2011-03-07 10:41:46 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
2011-09-25 03:28:35 +00:00
|
|
|
if (Cart.pcb == "HVC-CNROM-256K-01")
|
|
|
|
copyprotection = true;
|
|
|
|
else
|
|
|
|
copyprotection = false;
|
2011-03-08 07:25:35 +00:00
|
|
|
prg_mask = (Cart.prg_size / 16) - 1;
|
|
|
|
chr_mask = (Cart.chr_size / 8) - 1;
|
|
|
|
SetMirrorType(Cart.pad_h, Cart.pad_v);
|
2011-03-07 10:41:46 +00:00
|
|
|
|
|
|
|
return true;
|
2011-02-28 09:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void WritePRG(int addr, byte value)
|
|
|
|
{
|
2011-02-28 10:48:18 +00:00
|
|
|
if (bus_conflict) value = HandleNormalPRGConflict(addr,value);
|
2011-06-13 09:55:25 +00:00
|
|
|
value &= 3;
|
2011-02-28 09:13:27 +00:00
|
|
|
chr = value&chr_mask;
|
2011-09-25 03:28:35 +00:00
|
|
|
|
|
|
|
if (copyprotection)
|
|
|
|
{
|
|
|
|
if ((chr & 0x0F) > 0 && (chr != 0x13))
|
|
|
|
{
|
|
|
|
chr_enabled = true;
|
|
|
|
Console.WriteLine("chr enabled");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chr_enabled = false;
|
|
|
|
Console.WriteLine("chr disabled");
|
|
|
|
}
|
|
|
|
}
|
2011-02-28 10:16:07 +00:00
|
|
|
//Console.WriteLine("at {0}, set chr={1}", NES.ppu.ppur.status.sl, chr);
|
2011-02-28 09:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override byte ReadPPU(int addr)
|
|
|
|
{
|
2011-09-25 03:28:35 +00:00
|
|
|
if (chr_enabled == false)
|
|
|
|
{
|
|
|
|
chr_enabled = true;
|
|
|
|
return 0x12;
|
|
|
|
}
|
2011-02-28 09:13:27 +00:00
|
|
|
if (addr < 0x2000)
|
|
|
|
{
|
2011-03-07 10:41:46 +00:00
|
|
|
return VROM[addr + (chr<<13)];
|
2011-02-28 09:13:27 +00:00
|
|
|
}
|
|
|
|
else return base.ReadPPU(addr);
|
|
|
|
}
|
|
|
|
|
2011-04-17 22:51:53 +00:00
|
|
|
public override void SyncState(Serializer ser)
|
2011-03-01 09:32:12 +00:00
|
|
|
{
|
2011-04-17 22:51:53 +00:00
|
|
|
base.SyncState(ser);
|
|
|
|
ser.Sync("chr",ref chr);
|
2011-09-25 03:28:35 +00:00
|
|
|
ser.Sync("copyprotection", ref copyprotection);
|
|
|
|
ser.Sync("prg_mask", ref prg_mask);
|
|
|
|
ser.Sync("chr_mask", ref chr_mask);
|
|
|
|
ser.Sync("bus_conflict", ref bus_conflict);
|
2011-03-01 09:32:12 +00:00
|
|
|
}
|
2011-02-28 09:13:27 +00:00
|
|
|
|
2013-02-19 02:52:32 +00:00
|
|
|
public override byte ReadPRG(int addr)
|
|
|
|
{
|
|
|
|
if (prg_mask > 0)
|
|
|
|
{
|
|
|
|
return ROM[addr];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ROM[addr & 0x3FFF]; //adelikat: Keeps Bird Week from crashing (only 16k PRG), but it doesn't work
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-02-28 09:13:27 +00:00
|
|
|
}
|
|
|
|
}
|