mirror of https://github.com/bsnes-emu/bsnes.git
191 lines
4.4 KiB
C++
191 lines
4.4 KiB
C++
auto APU::Square1::dacEnable() const -> bool {
|
|
return (envelopeVolume || envelopeDirection);
|
|
}
|
|
|
|
auto APU::Square1::run() -> void {
|
|
if(period && --period == 0) {
|
|
period = 2 * (2048 - frequency);
|
|
phase++;
|
|
switch(duty) {
|
|
case 0: dutyOutput = (phase == 6); break; //______-_
|
|
case 1: dutyOutput = (phase >= 6); break; //______--
|
|
case 2: dutyOutput = (phase >= 4); break; //____----
|
|
case 3: dutyOutput = (phase <= 5); break; //------__
|
|
}
|
|
}
|
|
|
|
uint4 sample = dutyOutput ? (uint)volume : 0;
|
|
if(!enable) sample = 0;
|
|
|
|
output = sample;
|
|
}
|
|
|
|
auto APU::Square1::sweep(bool update) -> void {
|
|
if(!sweepEnable) return;
|
|
|
|
sweepNegate = sweepDirection;
|
|
uint delta = frequencyShadow >> sweepShift;
|
|
int freq = frequencyShadow + (sweepNegate ? -delta : delta);
|
|
|
|
if(freq > 2047) {
|
|
enable = false;
|
|
} else if(sweepShift && update) {
|
|
frequencyShadow = freq;
|
|
frequency = freq & 2047;
|
|
period = 2 * (2048 - frequency);
|
|
}
|
|
}
|
|
|
|
auto APU::Square1::clockLength() -> void {
|
|
if(counter) {
|
|
if(length && --length == 0) enable = false;
|
|
}
|
|
}
|
|
|
|
auto APU::Square1::clockSweep() -> void {
|
|
if(--sweepPeriod == 0) {
|
|
sweepPeriod = sweepFrequency ? (uint)sweepFrequency : 8;
|
|
if(sweepEnable && sweepFrequency) {
|
|
sweep(1);
|
|
sweep(0);
|
|
}
|
|
}
|
|
}
|
|
|
|
auto APU::Square1::clockEnvelope() -> void {
|
|
if(enable && envelopeFrequency && --envelopePeriod == 0) {
|
|
envelopePeriod = envelopeFrequency ? (uint)envelopeFrequency : 8;
|
|
if(envelopeDirection == 0 && volume > 0) volume--;
|
|
if(envelopeDirection == 1 && volume < 15) volume++;
|
|
}
|
|
}
|
|
|
|
auto APU::Square1::read(uint16 addr) -> uint8 {
|
|
if(addr == 0xff10) { //NR10
|
|
return 0x80 | sweepFrequency << 4 | sweepDirection << 3 | sweepShift;
|
|
}
|
|
|
|
if(addr == 0xff11) { //NR11
|
|
return duty << 6 | 0x3f;
|
|
}
|
|
|
|
if(addr == 0xff12) { //NR12
|
|
return envelopeVolume << 4 | envelopeDirection << 3 | envelopeFrequency;
|
|
}
|
|
|
|
if(addr == 0xff13) { //NR13
|
|
return 0xff;
|
|
}
|
|
|
|
if(addr == 0xff14) { //NR14
|
|
return 0x80 | counter << 6 | 0x3f;
|
|
}
|
|
|
|
return 0xff;
|
|
}
|
|
|
|
auto APU::Square1::write(uint16 addr, uint8 data) -> void {
|
|
if(addr == 0xff10) { //NR10
|
|
if(sweepEnable && sweepNegate && !data.bit(3)) enable = false;
|
|
sweepFrequency = data.bits(6,4);
|
|
sweepDirection = data.bit (3);
|
|
sweepShift = data.bits(2,0);
|
|
}
|
|
|
|
if(addr == 0xff11) { //NR11
|
|
duty = data.bits(7,6);
|
|
length = 64 - data.bits(5,0);
|
|
}
|
|
|
|
if(addr == 0xff12) { //NR12
|
|
envelopeVolume = data.bits(7,4);
|
|
envelopeDirection = data.bit (3);
|
|
envelopeFrequency = data.bits(2,0);
|
|
if(!dacEnable()) enable = false;
|
|
}
|
|
|
|
if(addr == 0xff13) { //NR13
|
|
frequency.bits(7,0) = data;
|
|
}
|
|
|
|
if(addr == 0xff14) { //NR14
|
|
if(apu.phase.bit(0) && !counter && data.bit(6)) {
|
|
if(length && --length == 0) enable = false;
|
|
}
|
|
|
|
counter = data.bit(6);
|
|
frequency.bits(10,8) = data.bits(2,0);
|
|
|
|
if(data.bit(7)) {
|
|
enable = dacEnable();
|
|
period = 2 * (2048 - frequency);
|
|
envelopePeriod = envelopeFrequency ? (uint)envelopeFrequency : 8;
|
|
volume = envelopeVolume;
|
|
|
|
if(!length) {
|
|
length = 64;
|
|
if(apu.phase.bit(0) && counter) length--;
|
|
}
|
|
|
|
frequencyShadow = frequency;
|
|
sweepNegate = false;
|
|
sweepPeriod = sweepFrequency ? (uint)sweepFrequency : 8;
|
|
sweepEnable = sweepPeriod || sweepShift;
|
|
if(sweepShift) sweep(0);
|
|
}
|
|
}
|
|
}
|
|
|
|
auto APU::Square1::power(bool initializeLength) -> void {
|
|
enable = 0;
|
|
|
|
sweepFrequency = 0;
|
|
sweepDirection = 0;
|
|
sweepShift = 0;
|
|
sweepNegate = 0;
|
|
duty = 0;
|
|
envelopeVolume = 0;
|
|
envelopeDirection = 0;
|
|
envelopeFrequency = 0;
|
|
frequency = 0;
|
|
counter = 0;
|
|
|
|
output = 0;
|
|
dutyOutput = 0;
|
|
phase = 0;
|
|
period = 0;
|
|
envelopePeriod = 0;
|
|
sweepPeriod = 0;
|
|
frequencyShadow = 0;
|
|
sweepEnable = 0;
|
|
volume = 0;
|
|
|
|
if(initializeLength) length = 64;
|
|
}
|
|
|
|
auto APU::Square1::serialize(serializer& s) -> void {
|
|
s.integer(enable);
|
|
|
|
s.integer(sweepFrequency);
|
|
s.integer(sweepDirection);
|
|
s.integer(sweepShift);
|
|
s.integer(sweepNegate);
|
|
s.integer(duty);
|
|
s.integer(length);
|
|
s.integer(envelopeVolume);
|
|
s.integer(envelopeDirection);
|
|
s.integer(envelopeFrequency);
|
|
s.integer(frequency);
|
|
s.integer(counter);
|
|
|
|
s.integer(output);
|
|
s.integer(dutyOutput);
|
|
s.integer(phase);
|
|
s.integer(period);
|
|
s.integer(envelopePeriod);
|
|
s.integer(sweepPeriod);
|
|
s.integer(frequencyShadow);
|
|
s.integer(sweepEnable);
|
|
s.integer(volume);
|
|
}
|