diff options
author | 2012-09-19 13:56:56 +0000 | |
---|---|---|
committer | 2012-09-19 13:56:56 +0000 | |
commit | cd3e8d79551be6ff48590ffd1762cb0846a528b9 (patch) | |
tree | 99ac0bf5d9f64cff8059962a9c8c238cb9a3270e /src/emu/machine/6525tpi.h | |
parent | f4d7dcb19a72dc3d66d9d642aff58283d51d440c (diff) |
(MESS) p500: Rewrote the driver using the PLAs for address decoding. [Curt Coder]
Diffstat (limited to 'src/emu/machine/6525tpi.h')
-rw-r--r-- | src/emu/machine/6525tpi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/machine/6525tpi.h b/src/emu/machine/6525tpi.h index a777f978eb9..8813b42d9df 100644 --- a/src/emu/machine/6525tpi.h +++ b/src/emu/machine/6525tpi.h @@ -64,6 +64,16 @@ public: // access to legacy token void *token() const { assert(m_token != NULL); return m_token; } + + DECLARE_READ8_MEMBER( read ); + DECLARE_WRITE8_MEMBER( write ); + + DECLARE_WRITE_LINE_MEMBER( i0_w ); + DECLARE_WRITE_LINE_MEMBER( i1_w ); + DECLARE_WRITE_LINE_MEMBER( i2_w ); + DECLARE_WRITE_LINE_MEMBER( i3_w ); + DECLARE_WRITE_LINE_MEMBER( i4_w ); + protected: // device-level overrides virtual void device_config_complete(); |