Add undocumented 0xF8 Sound Blaster DSP command. Fixes TEST-SBP.EXE.
This commit is contained in:
parent
71055ef19c
commit
3630bc2f17
1 changed files with 4 additions and 0 deletions
|
|
@ -501,6 +501,10 @@ void sb_exec_command(sb_dsp_t *dsp)
|
|||
// sb_add_data(0);
|
||||
sb_add_data(dsp, dsp->sb_asp_regs[dsp->sb_data[0]]);
|
||||
// pclog("ASP read reg %02X %02X\n", sb_data[0], sb_asp_regs[sb_data[0]]);
|
||||
break;
|
||||
case 0xF8:
|
||||
if (dsp->sb_type < SB16) break;
|
||||
sb_add_data(dsp, 0);
|
||||
break;
|
||||
case 0xF9:
|
||||
if (dsp->sb_type < SB16) break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue