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
|
|
|
bool APU::Sweep::check_period() {
|
|
|
|
if(pulse_period > 0x7ff) return false;
|
|
|
|
|
|
|
|
if(decrement == 0) {
|
|
|
|
if((pulse_period + (pulse_period >> shift)) & 0x800) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void APU::Sweep::clock(unsigned channel) {
|
|
|
|
if(--counter == 0) {
|
|
|
|
counter = period + 1;
|
|
|
|
if(enable && shift && pulse_period > 8) {
|
|
|
|
signed delta = pulse_period >> shift;
|
|
|
|
|
|
|
|
if(decrement) {
|
|
|
|
pulse_period -= delta;
|
|
|
|
if(channel == 0) pulse_period--;
|
|
|
|
} else if((pulse_period + delta) < 0x800) {
|
|
|
|
pulse_period += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(reload) {
|
|
|
|
reload = false;
|
|
|
|
counter = period + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APU::Sweep::power() {
|
|
|
|
shift = 0;
|
|
|
|
decrement = 0;
|
|
|
|
period = 0;
|
|
|
|
counter = 1;
|
|
|
|
enable = 0;
|
|
|
|
reload = 0;
|
|
|
|
pulse_period = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void APU::Sweep::reset() {
|
|
|
|
}
|
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
void APU::Sweep::serialize(serializer& s) {
|
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
|
|
|
s.integer(shift);
|
|
|
|
s.integer(decrement);
|
|
|
|
s.integer(period);
|
|
|
|
s.integer(counter);
|
|
|
|
s.integer(enable);
|
|
|
|
s.integer(reload);
|
|
|
|
s.integer(pulse_period);
|
|
|
|
}
|