summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/te7750.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-14 14:37:09 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-03-14 14:37:09 -0400
commit9f102a45c02582d37b79820be7e2fc790b553525 (patch)
treee9ee643171062511e402413a4a357100937d3572 /src/devices/machine/te7750.cpp
parentfeeb03c3ce0614adc5bb58485bf5211a414b80ed (diff)
te7750, z8536: Simplify handler signatures (nw)
Diffstat (limited to 'src/devices/machine/te7750.cpp')
-rw-r--r--src/devices/machine/te7750.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/te7750.cpp b/src/devices/machine/te7750.cpp
index 2fa70bebf56..58fd60cc49c 100644
--- a/src/devices/machine/te7750.cpp
+++ b/src/devices/machine/te7750.cpp
@@ -286,7 +286,7 @@ void te7750_device::set_ios()
// read - read input port and/or output latch
//-------------------------------------------------
-READ8_MEMBER(te7750_device::read)
+u8 te7750_device::read(offs_t offset)
{
if (offset < 9)
{
@@ -303,7 +303,7 @@ READ8_MEMBER(te7750_device::read)
}
logerror("Attempt to read from register with offset %X\n", offset);
- return space.unmap();
+ return 0xff;
}
//-------------------------------------------------
@@ -311,7 +311,7 @@ READ8_MEMBER(te7750_device::read)
// register
//-------------------------------------------------
-WRITE8_MEMBER(te7750_device::write)
+void te7750_device::write(offs_t offset, u8 data)
{
if (offset < 9)
{