summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pecom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pecom.cpp')
-rw-r--r--src/mame/machine/pecom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/pecom.cpp b/src/mame/machine/pecom.cpp
index 9699be284f0..da12c8d0932 100644
--- a/src/mame/machine/pecom.cpp
+++ b/src/mame/machine/pecom.cpp
@@ -98,7 +98,7 @@ READ8_MEMBER(pecom_state::pecom_keyboard_r)
used to determine keyboard line reading
*/
uint16_t addr = m_cdp1802->state_int(cosmac_device::COSMAC_R0 + m_cdp1802->state_int(cosmac_device::COSMAC_X));
- /* just in case somone is reading non existing ports */
+ /* just in case someone is reading non existing ports */
if (addr<0x7cca || addr>0x7ce3) return 0;
return m_io_ports[addr - 0x7cca]->read() & 0x03;
}