mirror of
https://github.com/holub/mame
synced 2025-05-25 15:25:33 +03:00
sblaster: direct DAC mode
This commit is contained in:
parent
a79e40a4fb
commit
dc83d03588
@ -5,7 +5,6 @@
|
|||||||
ISA 8/16 bit Creative Labs Sound Blaster Sound Card
|
ISA 8/16 bit Creative Labs Sound Blaster Sound Card
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
- implement DAC
|
|
||||||
- DSP type is a MCS-51 family, it has an internal ROM that needs decapping;
|
- DSP type is a MCS-51 family, it has an internal ROM that needs decapping;
|
||||||
- implement jumpers DIP-SWs;
|
- implement jumpers DIP-SWs;
|
||||||
|
|
||||||
@ -327,6 +326,8 @@ void sb_device::process_fifo(uint8_t cmd)
|
|||||||
switch(cmd)
|
switch(cmd)
|
||||||
{
|
{
|
||||||
case 0x10: // Direct DAC
|
case 0x10: // Direct DAC
|
||||||
|
m_ldac->write(m_dsp.fifo[1] << 8);
|
||||||
|
m_rdac->write(m_dsp.fifo[1] << 8);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 0x14: // 8-bit DMA, no autoinit
|
case 0x14: // 8-bit DMA, no autoinit
|
||||||
|
Loading…
Reference in New Issue
Block a user