summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hk68v10.cpp
diff options
context:
space:
mode:
author Martin Lindhe <martinlindhe@users.noreply.github.com>2017-11-03 14:58:54 +0100
committer hap <happppp@users.noreply.github.com>2017-11-03 14:58:54 +0100
commitb3c26450853e66c7f0b669c3cad261c99c7cf67a (patch)
tree86200cc5e25cc2b56c4ac75f099674a6e5d778e6 /src/mame/drivers/hk68v10.cpp
parentc44e154ac5453f1e354f9b872d442bf35ab15129 (diff)
fix some typos (#2772)
Diffstat (limited to 'src/mame/drivers/hk68v10.cpp')
-rw-r--r--src/mame/drivers/hk68v10.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/hk68v10.cpp b/src/mame/drivers/hk68v10.cpp
index 53d7e11a3e7..064fee8040e 100644
--- a/src/mame/drivers/hk68v10.cpp
+++ b/src/mame/drivers/hk68v10.cpp
@@ -279,7 +279,7 @@ WRITE16_MEMBER (hk68v10_state::bootvect_w){
LOG (("%s offset %08x, mask %08x, data %04x\n", FUNCNAME, offset, mem_mask, data));
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
#if 0