per-channel oscilloscope, part 7

YM2610 and YM2610B
only TIA is left
This commit is contained in:
tildearrow 2022-05-01 03:47:04 -05:00
parent 415e490025
commit 47f83c0472
12 changed files with 115 additions and 1 deletions

View file

@ -343,6 +343,12 @@ void* DivPlatformYM2610Ext::getChanState(int ch) {
return &chan[ch];
}
DivDispatchOscBuffer* DivPlatformYM2610Ext::getOscBuffer(int ch) {
if (ch>=5) return oscBuf[ch-3];
if (ch<2) return oscBuf[ch];
return NULL;
}
void DivPlatformYM2610Ext::reset() {
DivPlatformYM2610::reset();