Merge branch 'master' of github.com:tildearrow/furnace
This commit is contained in:
commit
145403e7dd
19 changed files with 209 additions and 138 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue