summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hng64.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-08-03 00:04:36 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-08-02 19:04:36 -0400
commitae110ad5e6496797f2fb4a47369705209bc046e3 (patch)
treeb171a41c8d85ff28ccb66f83670e36a49e060708 /src/mame/drivers/hng64.cpp
parent65ec00f2113fab68109afb62907347ad18c01a6b (diff)
tlcs870 - feature stubs (#3818)
* start adding stubs for various tlcs870 features (nw) * more logging (nw) * logging (nw) * moving forward (nw) * cpu flag fix (nw) * fake timer to push it along * fix some cpu bugs (nw)
Diffstat (limited to 'src/mame/drivers/hng64.cpp')
-rw-r--r--src/mame/drivers/hng64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hng64.cpp b/src/mame/drivers/hng64.cpp
index 38e73787959..35dbad18412 100644
--- a/src/mame/drivers/hng64.cpp
+++ b/src/mame/drivers/hng64.cpp
@@ -1534,7 +1534,7 @@ void hng64_state::machine_reset()
reset_sound();
}
-// used (shard ram access at least)
+// used (shared ram access at least)
READ8_MEMBER(hng64_state::ioport0_r)
{
uint16_t addr = (m_ex_ramaddr | (m_ex_ramaddr_upper<<9)) & 0x7ff;
@@ -1551,7 +1551,7 @@ READ8_MEMBER(hng64_state::ioport1_r)
return 0xff;
}
-// used (shard ram access at least)
+// used (shared ram access at least)
WRITE8_MEMBER(hng64_state::ioport0_w)
{
uint16_t addr = (m_ex_ramaddr | (m_ex_ramaddr_upper<<9)) & 0x7ff;