summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/eis_sad8852.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-05-31 17:07:44 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-05-31 17:07:44 -0400
commitf3c69775c9327e16f84d40d59aa72379be7ee55c (patch)
treee69e4297b622952926d9073988439db475ec35ad /src/devices/bus/isa/eis_sad8852.cpp
parente9392e8b50b96e1d86a54d94652ad084b30d22fc (diff)
bus/isa: Simplify signatures of most handlers (nw)
sb16_lle: Add device map for host I/O (nw)
Diffstat (limited to 'src/devices/bus/isa/eis_sad8852.cpp')
-rw-r--r--src/devices/bus/isa/eis_sad8852.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/isa/eis_sad8852.cpp b/src/devices/bus/isa/eis_sad8852.cpp
index cb1c62cb9c0..8908831350a 100644
--- a/src/devices/bus/isa/eis_sad8852.cpp
+++ b/src/devices/bus/isa/eis_sad8852.cpp
@@ -122,13 +122,13 @@ DEFINE_DEVICE_TYPE(ISA16_SAD8852, isa16_sad8852_device, "sad8852", "SAD8852 IBM
//-------------------------------------------------
// Access methods from ISA bus
//-------------------------------------------------
-READ8_MEMBER( isa16_sad8852_device::sad8852_r )
+uint8_t isa16_sad8852_device::sad8852_r(offs_t offset)
{
LOG("%s sad8852_r(): offset=%d\n", FUNCNAME, offset);
return 0xff;
}
-WRITE8_MEMBER( isa16_sad8852_device::sad8852_w )
+void isa16_sad8852_device::sad8852_w(offs_t offset, uint8_t data)
{
LOG("%s : offset=%d data=0x%02x\n", FUNCNAME, offset, data);
}
@@ -236,8 +236,8 @@ void isa16_sad8852_device::device_reset()
{
m_isa->install_device(
0x378, 0x378, // Wrong, need to find real i/o addresses
- read8_delegate(*this, FUNC(isa16_sad8852_device::sad8852_r)),
- write8_delegate(*this, FUNC(isa16_sad8852_device::sad8852_w)));
+ read8sm_delegate(*this, FUNC(isa16_sad8852_device::sad8852_r)),
+ write8sm_delegate(*this, FUNC(isa16_sad8852_device::sad8852_w)));
m_irq = m_isairq->read();
m_installed = true;
}