2011-10-02 10:05:45 +00:00
|
|
|
//NES-GNROM
|
|
|
|
//NES-MHROM
|
2011-09-29 12:44:49 +00:00
|
|
|
|
2011-10-02 10:05:45 +00:00
|
|
|
struct NES_GxROM : Board {
|
2011-09-29 12:44:49 +00:00
|
|
|
|
|
|
|
struct Settings {
|
|
|
|
bool mirror; //0 = horizontal, 1 = vertical
|
|
|
|
} settings;
|
|
|
|
|
2011-10-02 10:05:45 +00:00
|
|
|
uint2 prg_bank;
|
2011-09-29 12:44:49 +00:00
|
|
|
uint2 chr_bank;
|
|
|
|
|
|
|
|
uint8 prg_read(unsigned addr) {
|
Update to v082r33 release.
byuu says:
Added MMC2, MMC4, VRC4, VRC7 (no audio.)
Split NES audio code up into individual modules.
Fixed libsnes to compile: Themaister, can you please test to make sure
it works? I don't have a libsnes client on my work PC to test it.
Added about / license information to bottom of advanced settings screen
for now (better than nothing, I guess.)
Blocked PPU reads/writes while rendering for now, easier than coming up
with a bus address locking thing :/
I can't seem to fix MMC5 graphics during the intro to Uchuu Keibitai.
Without that, trying to implement vertical-split screen mode doesn't
make sense.
So as far as special audio chips go ...
* VRC6 is completed
* Sunsoft 5B has everything the only game to use it uses, but there are
more unused channels I'd like to support anyway (they aren't
documented, though.)
* MMC5 audio unsupported for now
* VRC7 audio unsupported, probably for a long time (hardest audio driver
of all. More complex than core NES APU.)
* audio PCM games (Moero Pro Yakyuu!) I probably won't ever support
(they require external WAV packs.)
2011-10-12 12:03:58 +00:00
|
|
|
if(addr & 0x8000) return prgrom.read((prg_bank << 15) | (addr & 0x7fff));
|
2011-09-29 12:44:49 +00:00
|
|
|
return cpu.mdr();
|
|
|
|
}
|
|
|
|
|
|
|
|
void prg_write(unsigned addr, uint8 data) {
|
2011-10-02 10:05:45 +00:00
|
|
|
if(addr & 0x8000) {
|
|
|
|
prg_bank = (data & 0x30) >> 4;
|
|
|
|
chr_bank = (data & 0x03) >> 0;
|
|
|
|
}
|
2011-09-29 12:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8 chr_read(unsigned addr) {
|
|
|
|
if(addr & 0x2000) {
|
|
|
|
if(settings.mirror == 0) addr = ((addr & 0x0800) >> 1) | (addr & 0x03ff);
|
|
|
|
return ppu.ciram_read(addr & 0x07ff);
|
|
|
|
}
|
|
|
|
addr = (chr_bank * 0x2000) + (addr & 0x1fff);
|
|
|
|
return Board::chr_read(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void chr_write(unsigned addr, uint8 data) {
|
|
|
|
if(addr & 0x2000) {
|
|
|
|
if(settings.mirror == 0) addr = ((addr & 0x0800) >> 1) | (addr & 0x03ff);
|
|
|
|
return ppu.ciram_write(addr & 0x07ff, data);
|
|
|
|
}
|
|
|
|
addr = (chr_bank * 0x2000) + (addr & 0x1fff);
|
|
|
|
Board::chr_write(addr, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void power() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset() {
|
2011-10-02 10:05:45 +00:00
|
|
|
prg_bank = 0;
|
2011-09-29 12:44:49 +00:00
|
|
|
chr_bank = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(serializer &s) {
|
2011-10-01 12:06:48 +00:00
|
|
|
Board::serialize(s);
|
2011-10-02 10:05:45 +00:00
|
|
|
s.integer(prg_bank);
|
2011-09-29 12:44:49 +00:00
|
|
|
s.integer(chr_bank);
|
|
|
|
}
|
|
|
|
|
2012-05-26 08:18:42 +00:00
|
|
|
NES_GxROM(XML::Document &document) : Board(document) {
|
2012-04-20 12:48:09 +00:00
|
|
|
settings.mirror = document["cartridge"]["mirror"]["mode"].data == "vertical" ? 1 : 0;
|
2011-09-29 12:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|