summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/p1_sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/p1_sound.cpp')
-rw-r--r--src/devices/bus/isa/p1_sound.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/isa/p1_sound.cpp b/src/devices/bus/isa/p1_sound.cpp
index 593774a1f81..d0c37039030 100644
--- a/src/devices/bus/isa/p1_sound.cpp
+++ b/src/devices/bus/isa/p1_sound.cpp
@@ -2,12 +2,12 @@
// copyright-holders:Sergey Svishchev
/**********************************************************************
- Poisk-1 sound card. DAC, ADC, MIDI in/out and 6 music channels.
+ Poisk-1 sound card. DAC, ADC, MIDI in/out and 6 music channels.
- Memory-mapped, uses IRQ3 and IRQ7, no DMA.
+ Memory-mapped, uses IRQ3 and IRQ7, no DMA.
- Copyright MESS Team.
- Visit http://mamedev.org for licensing and usage restrictions.
+ Copyright MESS Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
**********************************************************************/
@@ -141,7 +141,7 @@ READ8_MEMBER(p1_sound_device::adc_r)
WRITE8_MEMBER(p1_sound_device::dac_w)
{
-// logerror("DAC write: %02x <- %02x\n", offset>>1, data);
+// logerror("DAC write: %02x <- %02x\n", offset>>1, data);
m_dac_data[offset >> 1] = data;
m_isa->irq7_w(CLEAR_LINE);
}