2021-05-12 08:58:55 +00:00
|
|
|
#include "../dispatch.h"
|
|
|
|
|
2021-12-06 21:51:18 +00:00
|
|
|
void DivDispatch::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
2021-05-12 08:58:55 +00:00
|
|
|
}
|
|
|
|
|
2021-05-12 10:22:01 +00:00
|
|
|
void DivDispatch::tick() {
|
|
|
|
}
|
|
|
|
|
2021-12-18 08:25:42 +00:00
|
|
|
void* DivDispatch::getState() {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivDispatch::setState(void* state) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivDispatch::muteChannel(int ch, bool mute) {
|
|
|
|
}
|
|
|
|
|
2021-05-12 08:58:55 +00:00
|
|
|
int DivDispatch::dispatch(DivCommand c) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-12-11 08:34:43 +00:00
|
|
|
void DivDispatch::reset() {
|
|
|
|
}
|
|
|
|
|
2021-12-06 21:51:18 +00:00
|
|
|
bool DivDispatch::isStereo() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-08 05:33:00 +00:00
|
|
|
bool DivDispatch::keyOffAffectsArp(int ch) {
|
2021-12-07 06:23:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-29 07:08:50 +00:00
|
|
|
bool DivDispatch::keyOffAffectsPorta(int ch) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivDispatch::getPortaFloor(int ch) {
|
|
|
|
return 0x00;
|
|
|
|
}
|
|
|
|
|
2021-12-15 22:32:08 +00:00
|
|
|
void DivDispatch::setPAL(bool pal) {
|
|
|
|
}
|
|
|
|
|
2021-12-21 06:29:07 +00:00
|
|
|
void DivDispatch::setSkipRegisterWrites(bool value) {
|
|
|
|
skipRegisterWrites=value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivDispatch::forceIns() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-12-08 06:56:40 +00:00
|
|
|
int DivDispatch::init(DivEngine* p, int channels, int sugRate, bool pal) {
|
2021-05-12 08:58:55 +00:00
|
|
|
return 0;
|
2021-05-12 10:22:01 +00:00
|
|
|
}
|
2021-12-15 05:37:27 +00:00
|
|
|
|
|
|
|
void DivDispatch::quit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
DivDispatch::~DivDispatch() {
|
|
|
|
}
|