mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
parent
4bf4be1ea2
commit
8dc143af7b
2 changed files with 47 additions and 26 deletions
|
@ -21,15 +21,15 @@
|
||||||
#include "../engine.h"
|
#include "../engine.h"
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#define rWrite(a,v) {regPool[(a)]=(v)&0xff; if((a)==10) {chan.sreg=(v); chan.cnt=2;}}
|
|
||||||
|
|
||||||
#define CHIP_DIVIDER 16
|
#define CHIP_DIVIDER 16
|
||||||
#define SAMP_DIVIDER 4
|
#define SAMP_DIVIDER 4
|
||||||
|
|
||||||
const char* regCheatSheet6522[]={
|
const char* regCheatSheet6522[]={
|
||||||
"T2L", "08",
|
"T2L", "08",
|
||||||
|
"T2H", "09",
|
||||||
"SR", "0A",
|
"SR", "0A",
|
||||||
"ACR", "0B",
|
"ACR", "0B",
|
||||||
|
"PCR", "0C",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -46,26 +46,45 @@ const char* DivPlatformPET::getEffectName(unsigned char effect) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// high-level emulation of 6522 shift register and driver software for now
|
||||||
|
void DivPlatformPET::rWrite(unsigned int addr, unsigned char val) {
|
||||||
|
bool hwSROutput=((regPool[11]>>2)&7)==4;
|
||||||
|
switch (addr) {
|
||||||
|
case 9:
|
||||||
|
// simulate phase reset from switching between hw/sw shift registers
|
||||||
|
if ((regPool[9]==0)^(val==0)) {
|
||||||
|
chan.sreg=chan.wave;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 10:
|
||||||
|
chan.sreg=val;
|
||||||
|
if (hwSROutput) chan.cnt=2;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
regPool[addr]=val;
|
||||||
|
}
|
||||||
|
|
||||||
void DivPlatformPET::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
void DivPlatformPET::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
||||||
// high-level emulation of 6522 shift register for now
|
bool hwSROutput=((regPool[11]>>2)&7)==4;
|
||||||
int t2=regPool[8]*2+4;
|
if (chan.enable) {
|
||||||
if (((regPool[11]>>2)&7)==4) {
|
int reload=regPool[8]*2+4;
|
||||||
|
if (!hwSROutput) {
|
||||||
|
reload+=regPool[9]*512;
|
||||||
|
}
|
||||||
for (size_t h=start; h<start+len; h++) {
|
for (size_t h=start; h<start+len; h++) {
|
||||||
int cycs=SAMP_DIVIDER;
|
if (SAMP_DIVIDER>chan.cnt) {
|
||||||
while (cycs>0) {
|
|
||||||
int adv=MIN(cycs,chan.cnt);
|
|
||||||
chan.cnt-=adv;
|
|
||||||
cycs-=adv;
|
|
||||||
if (chan.cnt==0) {
|
|
||||||
chan.out=(chan.sreg&1)*32767;
|
chan.out=(chan.sreg&1)*32767;
|
||||||
chan.sreg=(chan.sreg>>1)|((chan.sreg&1)<<7);
|
chan.sreg=(chan.sreg>>1)|((chan.sreg&1)<<7);
|
||||||
chan.cnt=t2;
|
chan.cnt+=reload-SAMP_DIVIDER;
|
||||||
}
|
} else {
|
||||||
|
chan.cnt-=SAMP_DIVIDER;
|
||||||
}
|
}
|
||||||
bufL[h]=chan.out;
|
bufL[h]=chan.out;
|
||||||
bufR[h]=chan.out;
|
bufR[h]=chan.out;
|
||||||
oscBuf->data[oscBuf->needle++]=chan.out;
|
oscBuf->data[oscBuf->needle++]=chan.out;
|
||||||
}
|
}
|
||||||
|
// emulate driver writes to PCR
|
||||||
|
if (!hwSROutput) regPool[12]=chan.out?0xe0:0xc0;
|
||||||
} else {
|
} else {
|
||||||
chan.out=0;
|
chan.out=0;
|
||||||
for (size_t h=start; h<start+len; h++) {
|
for (size_t h=start; h<start+len; h++) {
|
||||||
|
@ -78,11 +97,10 @@ void DivPlatformPET::acquire(short* bufL, short* bufR, size_t start, size_t len)
|
||||||
|
|
||||||
void DivPlatformPET::writeOutVol() {
|
void DivPlatformPET::writeOutVol() {
|
||||||
if (chan.active && !isMuted && chan.outVol>0) {
|
if (chan.active && !isMuted && chan.outVol>0) {
|
||||||
if (regPool[11]!=16) {
|
chan.enable=true;
|
||||||
rWrite(11,16);
|
rWrite(11,regPool[9]==0?16:0);
|
||||||
rWrite(10,chan.wave);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
|
chan.enable=false;
|
||||||
rWrite(11,0);
|
rWrite(11,0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -118,21 +136,22 @@ void DivPlatformPET::tick(bool sysTick) {
|
||||||
chan.freqChanged=true;
|
chan.freqChanged=true;
|
||||||
}
|
}
|
||||||
if (chan.freqChanged || chan.keyOn || chan.keyOff) {
|
if (chan.freqChanged || chan.keyOn || chan.keyOff) {
|
||||||
chan.freq=parent->calcFreq(chan.baseFreq,chan.pitch,true,0,chan.pitch2,chipClock,CHIP_DIVIDER);
|
chan.freq=parent->calcFreq(chan.baseFreq,chan.pitch,true,0,chan.pitch2,chipClock,CHIP_DIVIDER)-2;
|
||||||
if (chan.freq>257) chan.freq=257;
|
if (chan.freq>65535) chan.freq=65535;
|
||||||
if (chan.freq<2) chan.freq=2;
|
if (chan.freq<0) chan.freq=0;
|
||||||
rWrite(8,chan.freq-2);
|
rWrite(8,chan.freq&0xff);
|
||||||
|
rWrite(9,chan.freq>>8);
|
||||||
if (chan.keyOn) {
|
if (chan.keyOn) {
|
||||||
if (!chan.std.vol.will) {
|
if (!chan.std.vol.will) {
|
||||||
chan.outVol=chan.vol;
|
chan.outVol=chan.vol;
|
||||||
writeOutVol();
|
|
||||||
}
|
}
|
||||||
chan.keyOn=false;
|
chan.keyOn=false;
|
||||||
}
|
}
|
||||||
if (chan.keyOff) {
|
if (chan.keyOff) {
|
||||||
rWrite(11,0);
|
|
||||||
chan.keyOff=false;
|
chan.keyOff=false;
|
||||||
}
|
}
|
||||||
|
// update mode setting and channel enable
|
||||||
|
writeOutVol();
|
||||||
chan.freqChanged=false;
|
chan.freqChanged=false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
class DivPlatformPET: public DivDispatch {
|
class DivPlatformPET: public DivDispatch {
|
||||||
struct Channel {
|
struct Channel {
|
||||||
int freq, baseFreq, pitch, pitch2, note, ins;
|
int freq, baseFreq, pitch, pitch2, note, ins;
|
||||||
bool active, insChanged, freqChanged, keyOn, keyOff, inPorta;
|
bool active, insChanged, freqChanged, keyOn, keyOff, inPorta, enable;
|
||||||
int vol, outVol, wave;
|
int vol, outVol, wave;
|
||||||
unsigned char sreg;
|
unsigned char sreg;
|
||||||
int cnt;
|
int cnt;
|
||||||
|
@ -49,6 +49,7 @@ class DivPlatformPET: public DivDispatch {
|
||||||
keyOn(false),
|
keyOn(false),
|
||||||
keyOff(false),
|
keyOff(false),
|
||||||
inPorta(false),
|
inPorta(false),
|
||||||
|
enable(false),
|
||||||
vol(1),
|
vol(1),
|
||||||
outVol(1),
|
outVol(1),
|
||||||
wave(0b00001111),
|
wave(0b00001111),
|
||||||
|
@ -85,6 +86,7 @@ class DivPlatformPET: public DivDispatch {
|
||||||
~DivPlatformPET();
|
~DivPlatformPET();
|
||||||
private:
|
private:
|
||||||
void writeOutVol();
|
void writeOutVol();
|
||||||
|
void rWrite(unsigned int addr, unsigned char val);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue