diff options
author | 2018-03-04 23:16:35 -0500 | |
---|---|---|
committer | 2018-03-04 23:20:27 -0500 | |
commit | a9b11e7182f8149e057da2b1c064b34b5cc5d403 (patch) | |
tree | 48d54d5386e8562dd03b6d9af7e9b1ddbd54fad5 /src/devices/machine/tms5501.h | |
parent | 76add106d2115a8191fbaae23f88e00cf6e0e58d (diff) |
mcb216, cb308: Replace UART with TMS5501
Diffstat (limited to 'src/devices/machine/tms5501.h')
-rw-r--r-- | src/devices/machine/tms5501.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/machine/tms5501.h b/src/devices/machine/tms5501.h index 8b7905df77c..a10589b895c 100644 --- a/src/devices/machine/tms5501.h +++ b/src/devices/machine/tms5501.h @@ -82,6 +82,17 @@ public: virtual void io_map(address_map &map); + DECLARE_READ8_MEMBER( rb_r ); + DECLARE_READ8_MEMBER( xi_r ); + DECLARE_READ8_MEMBER( rst_r ); + DECLARE_READ8_MEMBER( sta_r ); + DECLARE_WRITE8_MEMBER( cmd_w ); + DECLARE_WRITE8_MEMBER( rr_w ); + DECLARE_WRITE8_MEMBER( tb_w ); + DECLARE_WRITE8_MEMBER( xo_w ); + DECLARE_WRITE8_MEMBER( mr_w ); + DECLARE_WRITE8_MEMBER( tmr_w ); + protected: // device-level overrides virtual void device_start() override; @@ -172,17 +183,6 @@ private: int m_xi7; emu_timer *m_timer[5]; - - DECLARE_READ8_MEMBER( rb_r ); - DECLARE_READ8_MEMBER( xi_r ); - DECLARE_READ8_MEMBER( rst_r ); - DECLARE_READ8_MEMBER( sta_r ); - DECLARE_WRITE8_MEMBER( cmd_w ); - DECLARE_WRITE8_MEMBER( rr_w ); - DECLARE_WRITE8_MEMBER( tb_w ); - DECLARE_WRITE8_MEMBER( xo_w ); - DECLARE_WRITE8_MEMBER( mr_w ); - DECLARE_WRITE8_MEMBER( tmr_w ); }; |