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