Merge branch 'master' of github.com:tildearrow/furnace

This commit is contained in:
tildearrow 2021-12-06 16:52:03 -05:00
commit 145403e7dd
19 changed files with 209 additions and 138 deletions

View file

@ -4,10 +4,11 @@
#define FREQ_BASE 277.0f
void DivPlatformC64::acquire(int& l, int& r) {
sid.clock();
l=sid.output();
r=l;
void DivPlatformC64::acquire(short* bufL, short* bufR, size_t start, size_t len) {
for (size_t i=start; i<start+len; i++) {
sid.clock();
bufL[i]=sid.output();
}
}
void DivPlatformC64::tick() {