summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/binbug.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-07-21 13:38:30 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-07-21 13:38:30 -0400
commitf53b9b5291c706dc89990b969e00c7a3cad4dfdd (patch)
tree4f107b705db43dbed258cfbdbf85462db29c8160 /src/mame/drivers/binbug.cpp
parent65054fc4f1681ca8b52fe7bde9559a2ffda91968 (diff)
dg640: Add base address select switch and screen raw parameters; improve documentation (nw)
Diffstat (limited to 'src/mame/drivers/binbug.cpp')
-rw-r--r--src/mame/drivers/binbug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/binbug.cpp b/src/mame/drivers/binbug.cpp
index 8420ffea6a0..175d513b26d 100644
--- a/src/mame/drivers/binbug.cpp
+++ b/src/mame/drivers/binbug.cpp
@@ -144,12 +144,12 @@ WRITE_LINE_MEMBER( binbug_state::binbug_serial_w )
READ8_MEMBER( binbug_state::mem_r )
{
- return m_s100->smemr_r(offset);
+ return m_s100->smemr_r(offset + 0x7800);
}
WRITE8_MEMBER( binbug_state::mem_w )
{
- m_s100->mwrt_w(offset, data);
+ m_s100->mwrt_w(offset + 0x7800, data);
}
void binbug_state::binbug_mem(address_map &map)