This commit is contained in:
tildearrow 2022-05-28 17:45:44 -05:00
parent cc87d1502c
commit b8671afa39
1 changed files with 1 additions and 1 deletions

View File

@ -49,6 +49,7 @@ void DivPlatformMSM6295::acquire(short* bufL, short* bufR, size_t start, size_t
QueuedWrite& w=writes.front();
switch (w.addr) {
case 0: // command
msm->command_w(w.val);
break;
case 8: // chip clock select (VGM)
case 9:
@ -68,7 +69,6 @@ void DivPlatformMSM6295::acquire(short* bufL, short* bufR, size_t start, size_t
case 19:
break;
}
msm->command_w(w.val);
writes.pop();
delay=32;
}