mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
f810fc0c3c
no sound, just terminal output
14 lines
No EOL
226 B
C++
14 lines
No EOL
226 B
C++
#include "../dispatch.h"
|
|
|
|
void DivDispatch::acquire(short& l, short& r) {
|
|
l=0;
|
|
r=0;
|
|
}
|
|
|
|
int DivDispatch::dispatch(DivCommand c) {
|
|
return 1;
|
|
}
|
|
|
|
int DivDispatch::init(DivEngine* p, int channels, int sugRate) {
|
|
return 0;
|
|
} |