summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/k007452.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/k007452.cpp')
-rw-r--r--src/mame/machine/k007452.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/k007452.cpp b/src/mame/machine/k007452.cpp
index 20d4ac450af..6644e2aa436 100644
--- a/src/mame/machine/k007452.cpp
+++ b/src/mame/machine/k007452.cpp
@@ -38,7 +38,7 @@ u8 k007452_device::read(offs_t offset)
case 1: return u8((m_multiply_result >> 8) & 0xff);
case 2: return u8(m_divide_remainder & 0xff);
case 3: return u8((m_divide_remainder >> 8) & 0xff);
- case 4: return u8(m_divide_quotient & 0xff);
+ case 4: return u8(m_divide_quotient & 0xff);
case 5: return u8((m_divide_quotient >> 8) & 0xff);
default: return 0;
}