diff options
author | 2019-03-14 21:57:44 -0400 | |
---|---|---|
committer | 2019-03-14 21:57:44 -0400 | |
commit | 307c442eb5e4d623d7383a3dcc038d506e2baa3a (patch) | |
tree | 7a6ffb33db2ddfeefa016b99ea8f4dca14c11f10 /src/devices/bus/bbc/rom/pal.h | |
parent | 1a14eeaa7d26dd5a5b83bc36874fe68198d07eaa (diff) |
bus/bbc/exp, bus/bbc/rom, ds1315, upd7002: Simplify read/write handlers (nw)
Diffstat (limited to 'src/devices/bus/bbc/rom/pal.h')
-rw-r--r-- | src/devices/bus/bbc/rom/pal.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/bbc/rom/pal.h b/src/devices/bus/bbc/rom/pal.h index 32dd8a23b85..31c8dcd0d78 100644 --- a/src/devices/bus/bbc/rom/pal.h +++ b/src/devices/bus/bbc/rom/pal.h @@ -46,7 +46,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_ccibase_device @@ -59,7 +59,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_ccispell_device @@ -72,7 +72,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palqst_device @@ -84,7 +84,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palwap_device @@ -96,7 +96,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palted_device @@ -109,7 +109,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palabep_device @@ -122,7 +122,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palabe_device @@ -135,7 +135,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; // ======================> bbc_palmo2_device @@ -148,7 +148,7 @@ public: protected: // device_bbc_rom_interface overrides - virtual DECLARE_READ8_MEMBER(read) override; + virtual uint8_t read(offs_t offset) override; }; |