diff options
author | 2012-09-10 14:18:45 +0000 | |
---|---|---|
committer | 2012-09-10 14:18:45 +0000 | |
commit | be3af47f06821ce44fa7ebd16c026ede804d82bf (patch) | |
tree | b23d5c56e44b0d689a6bd5431e26bfa3cd39d04d /src/mess/machine/mos8722.h | |
parent | 7de113e8959929b99676f27f6a9762461c01ef7d (diff) |
(MESS) c128: MMU WIP. (nw)
(MESS) mos6581: Improved interface. (nw)
mos6526: Improved interface. (nw)
Diffstat (limited to 'src/mess/machine/mos8722.h')
-rw-r--r-- | src/mess/machine/mos8722.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mess/machine/mos8722.h b/src/mess/machine/mos8722.h index e9b56b51c34..1e7ce42006d 100644 --- a/src/mess/machine/mos8722.h +++ b/src/mess/machine/mos8722.h @@ -82,12 +82,12 @@ public: // construction/destruction mos8722_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - DECLARE_READ8_MEMBER( read ); + UINT8 read(offs_t offset, UINT8 data); DECLARE_WRITE8_MEMBER( write ); DECLARE_READ_LINE_MEMBER( fsdir_r ); - offs_t ta_r(offs_t offset, int aec, int *ms0, int *ms1, int *ms2, int *ms3); + offs_t ta_r(offs_t offset, int aec, int *ms0, int *ms1, int *ms2, int *ms3, int *cas0, int *cas1); protected: // device-level overrides @@ -103,6 +103,9 @@ private: devcb_resolved_read_line m_in_sense40_func; UINT8 m_reg[10]; + + bool m_p0l_written; + bool m_p1l_written; }; |