diff options
author | 2020-05-31 17:07:44 -0400 | |
---|---|---|
committer | 2020-05-31 17:07:44 -0400 | |
commit | f3c69775c9327e16f84d40d59aa72379be7ee55c (patch) | |
tree | e69e4297b622952926d9073988439db475ec35ad /src/devices/bus/isa/pds.h | |
parent | e9392e8b50b96e1d86a54d94652ad084b30d22fc (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/pds.h')
-rw-r--r-- | src/devices/bus/isa/pds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/pds.h b/src/devices/bus/isa/pds.h index 5e8bf16bb88..3188fdac0ad 100644 --- a/src/devices/bus/isa/pds.h +++ b/src/devices/bus/isa/pds.h @@ -19,8 +19,8 @@ class isa8_pds_device : public: isa8_pds_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - DECLARE_READ8_MEMBER(ppi_r); - DECLARE_WRITE8_MEMBER(ppi_w); + uint8_t ppi_r(offs_t offset); + void ppi_w(offs_t offset, uint8_t data); protected: // device-level overrides |