summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2151.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ym2151.cpp')
-rw-r--r--src/devices/sound/ym2151.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/ym2151.cpp b/src/devices/sound/ym2151.cpp
index 670af66ca5c..b4769341425 100644
--- a/src/devices/sound/ym2151.cpp
+++ b/src/devices/sound/ym2151.cpp
@@ -89,7 +89,7 @@ u8 ym2151_device::read(offs_t offset)
logerror("Unexpected read from YM2151 offset %d\n", offset & 3);
break;
- case 1: // status port, YM2203 compatible
+ case 1: // status port, YM2203 compatible
result = m_opm.status();
break;
}
@@ -110,7 +110,7 @@ void ym2151_device::write(offs_t offset, u8 value)
switch (offset & 1)
{
- case 0: // address port
+ case 0: // address port
m_address = value;
break;
@@ -251,7 +251,7 @@ void ym2164_device::write(offs_t offset, u8 value)
switch (offset & 1)
{
- case 0: // address port
+ case 0: // address port
m_address = value;
break;