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
|
|
|
struct KonamiVRC4 : Board {
|
|
|
|
|
|
|
|
struct Settings {
|
|
|
|
struct Pinout {
|
|
|
|
unsigned a0;
|
|
|
|
unsigned a1;
|
|
|
|
} pinout;
|
|
|
|
} settings;
|
|
|
|
|
|
|
|
VRC4 vrc4;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
return vrc4.main();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8 prg_read(unsigned addr) {
|
|
|
|
if(addr < 0x6000) return cpu.mdr();
|
|
|
|
if(addr < 0x8000) return prgram.read(addr);
|
|
|
|
return prgrom.read(vrc4.prg_addr(addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
void prg_write(unsigned addr, uint8 data) {
|
|
|
|
if(addr < 0x6000) return;
|
|
|
|
if(addr < 0x8000) return prgram.write(addr, data);
|
|
|
|
|
|
|
|
bool a0 = (addr & settings.pinout.a0);
|
|
|
|
bool a1 = (addr & settings.pinout.a1);
|
|
|
|
addr &= 0xfff0;
|
|
|
|
addr |= (a1 << 1) | (a0 << 0);
|
|
|
|
return vrc4.reg_write(addr, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8 chr_read(unsigned addr) {
|
|
|
|
if(addr & 0x2000) return ppu.ciram_read(vrc4.ciram_addr(addr));
|
|
|
|
return Board::chr_read(vrc4.chr_addr(addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
void chr_write(unsigned addr, uint8 data) {
|
|
|
|
if(addr & 0x2000) return ppu.ciram_write(vrc4.ciram_addr(addr), data);
|
|
|
|
return Board::chr_write(vrc4.chr_addr(addr), data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void power() {
|
|
|
|
vrc4.power();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset() {
|
|
|
|
vrc4.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(serializer &s) {
|
|
|
|
Board::serialize(s);
|
|
|
|
vrc4.serialize(s);
|
|
|
|
}
|
|
|
|
|
Update to v091r05 release.
[No prior releases were posted to the WIP thread. -Ed.]
byuu says:
Super Famicom mapping system has been reworked as discussed with the
mask= changes. offset becomes base, mode is gone. Also added support for
comma-separated fields in the address fields, to reduce the number of
map lines needed.
<?xml version="1.0" encoding="UTF-8"?>
<cartridge region="NTSC">
<superfx revision="2">
<rom name="program.rom" size="0x200000"/>
<ram name="save.rwm" size="0x8000"/>
<map id="io" address="00-3f,80-bf:3000-32ff"/>
<map id="rom" address="00-3f:8000-ffff" mask="0x8000"/>
<map id="rom" address="40-5f:0000-ffff"/>
<map id="ram" address="00-3f,80-bf:6000-7fff" size="0x2000"/>
<map id="ram" address="70-71:0000-ffff"/>
</superfx>
</cartridge>
Or in BML:
cartridge region=NTSC
superfx revision=2
rom name=program.rom size=0x200000
ram name=save.rwm size=0x8000
map id=io address=00-3f,80-bf:3000-32ff
map id=rom address=00-3f:8000-ffff mask=0x8000
map id=rom address=40-5f:0000-ffff
map id=ram address=00-3f,80-bf:6000-7fff size=0x2000
map id=ram address=70-71:0000-ffff
As a result of the changes, old mappings will no longer work. The above
XML example will run Super Mario World 2: Yoshi's Island. Otherwise,
you'll have to write your own.
All that's left now is to work some sort of database mapping system in,
so I can start dumping carts en masse.
The NES changes that FitzRoy asked for are mostly in as well.
Also, part of the reason I haven't released a WIP ... but fuck it, I'm
not going to wait forever to post a new WIP.
I've added a skeleton driver to emulate Campus Challenge '92 and
Powerfest '94. There's no actual emulation, except for the stuff I can
glean from looking at the pictures of the board. It has a DSP-1 (so
SR/DR registers), four ROMs that map in and out, RAM, etc.
I've also added preliminary mapping to upload high scores to a website,
but obviously I need the ROMs first.
2012-10-09 08:25:32 +00:00
|
|
|
KonamiVRC4(Markup::Node &document) : Board(document), vrc4(*this) {
|
2012-04-20 12:48:09 +00:00
|
|
|
settings.pinout.a0 = 1 << decimal(document["cartridge"]["chip"]["pinout"]["a0"].data);
|
|
|
|
settings.pinout.a1 = 1 << decimal(document["cartridge"]["chip"]["pinout"]["a1"].data);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
};
|