summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2612.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ym2612.cpp')
-rw-r--r--src/devices/sound/ym2612.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/ym2612.cpp b/src/devices/sound/ym2612.cpp
index ce24d818c9f..ce673604af8 100644
--- a/src/devices/sound/ym2612.cpp
+++ b/src/devices/sound/ym2612.cpp
@@ -47,13 +47,13 @@ u8 ym2612_device::read(offs_t offset)
u8 result = 0;
switch (offset & 3)
{
- case 0: // status port, YM2203 compatible
+ case 0: // status port, YM2203 compatible
result = m_opn.status();
break;
case 1: // data port (unused)
- case 2: // status port, extended
- case 3: // data port (unused)
+ case 2: // status port, extended
+ case 3: // data port (unused)
logerror("Unexpected read from YM2612 offset %d\n", offset & 3);
break;
}
@@ -70,7 +70,7 @@ void ym2612_device::write(offs_t offset, u8 value)
{
switch (offset & 3)
{
- case 0: // address port
+ case 0: // address port
m_address = value;
break;