diff options
author | 2020-05-21 19:57:43 +0200 | |
---|---|---|
committer | 2020-05-21 19:57:43 +0200 | |
commit | 889e65792ed3eb0e90c1c6cf266b6f4a08b9a26b (patch) | |
tree | 65d69f004e494e2fa57526066e022886416d07e6 /src/devices/bus/sg1000_exp | |
parent | 6b8cb09ee7cfdbc6415aebe4670b44e5b5756a2a (diff) |
last batch of changes to make the https://github.com/mamedev/mame/tree/devcb-no-space branch build. (nw)
Diffstat (limited to 'src/devices/bus/sg1000_exp')
-rw-r--r-- | src/devices/bus/sg1000_exp/sk1100.cpp | 6 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sk1100.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/sg1000_exp/sk1100.cpp b/src/devices/bus/sg1000_exp/sk1100.cpp index 1bb0a01adfd..c02b86d5994 100644 --- a/src/devices/bus/sg1000_exp/sk1100.cpp +++ b/src/devices/bus/sg1000_exp/sk1100.cpp @@ -235,7 +235,7 @@ bool sega_sk1100_device::is_readable(uint8_t offset) I8255 INTERFACE -------------------------------------------------*/ -READ8_MEMBER( sega_sk1100_device::ppi_pa_r ) +uint8_t sega_sk1100_device::ppi_pa_r() { /* Signal Description @@ -253,7 +253,7 @@ READ8_MEMBER( sega_sk1100_device::ppi_pa_r ) return m_pa[m_keylatch]->read(); } -READ8_MEMBER( sega_sk1100_device::ppi_pb_r ) +uint8_t sega_sk1100_device::ppi_pb_r() { /* Signal Description @@ -284,7 +284,7 @@ READ8_MEMBER( sega_sk1100_device::ppi_pb_r ) return data; } -WRITE8_MEMBER( sega_sk1100_device::ppi_pc_w ) +void sega_sk1100_device::ppi_pc_w(uint8_t data) { /* Signal Description diff --git a/src/devices/bus/sg1000_exp/sk1100.h b/src/devices/bus/sg1000_exp/sk1100.h index 13ff5780f64..0fa78b06af7 100644 --- a/src/devices/bus/sg1000_exp/sk1100.h +++ b/src/devices/bus/sg1000_exp/sk1100.h @@ -49,9 +49,9 @@ protected: virtual bool is_readable(uint8_t offset) override; private: - DECLARE_READ8_MEMBER( ppi_pa_r ); - DECLARE_READ8_MEMBER( ppi_pb_r ); - DECLARE_WRITE8_MEMBER( ppi_pc_w ); + uint8_t ppi_pa_r(); + uint8_t ppi_pb_r(); + void ppi_pc_w(uint8_t data); required_device<cassette_image_device> m_cassette; required_device<i8255_device> m_ppi; |