Added stub for the undocumented DSP command 0xE2.
This commit is contained in:
parent
c10e8feea6
commit
9e0a507726
@ -740,6 +740,7 @@ void bx_sb16_c::dsp_datawrite(Bit32u value)
|
||||
case 0x40:
|
||||
case 0x38:
|
||||
case 0xe0:
|
||||
case 0xe2:
|
||||
case 0xe4:
|
||||
case 0xf9:
|
||||
bytesneeded = 1;
|
||||
@ -1152,6 +1153,13 @@ void bx_sb16_c::dsp_datawrite(Bit32u value)
|
||||
}
|
||||
break;
|
||||
|
||||
case 0xe2:
|
||||
DSP.datain.get(&value8);
|
||||
// TODO
|
||||
writelog(WAVELOG(3), "undocumented DSP command %x ignored (value = 0x%02x)",
|
||||
DSP.datain.currentcommand(), value8);
|
||||
break;
|
||||
|
||||
case 0xe3:
|
||||
// none, output: Copyright string
|
||||
// the Windows driver needs the exact text, otherwise it
|
||||
|
Loading…
Reference in New Issue
Block a user