summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/tms9901.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-07 00:01:03 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-03-07 00:04:32 -0500
commitbcae47f7bbafb3088bf2571281c9e5f1195b3ec4 (patch)
tree32c61d8f211caed573e99d978e359c45867ff9a5 /src/devices/machine/tms9901.h
parent50145b070be4a6ccd235a425be789d97803bd3cd (diff)
bus/ti99, geneve, ti99_[various]: Eliminate address space and mem_mask arguments in all handlers (nw)
at29x, hdc92x4, mm58274c, rtc65271, strata, tms9901, tms9902: Simplify read/write handlers (nw)
Diffstat (limited to 'src/devices/machine/tms9901.h')
-rw-r--r--src/devices/machine/tms9901.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/tms9901.h b/src/devices/machine/tms9901.h
index 31a1f79a3d1..eda01f253ad 100644
--- a/src/devices/machine/tms9901.h
+++ b/src/devices/machine/tms9901.h
@@ -63,8 +63,8 @@ public:
// Synchronous clock input
DECLARE_WRITE_LINE_MEMBER( phi_line );
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
auto p_out_cb(int n) { return m_write_p[n].bind(); }
auto read_cb() { return m_read_block.bind(); }