summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp9845_printer.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-10 20:25:15 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-10 20:25:15 +0200
commit56861bc5bf050f0acffa7e0d907d91ebab6c1799 (patch)
tree99482228b1de56fe10f2f9d8419110e82c1562b4 /src/mame/machine/hp9845_printer.h
parent736a740322ad3f056c5741fef8e1f737821944f9 (diff)
drivers starting with g, h and i: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/machine/hp9845_printer.h')
-rw-r--r--src/mame/machine/hp9845_printer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/hp9845_printer.h b/src/mame/machine/hp9845_printer.h
index 1219a0af278..d42c00c01cb 100644
--- a/src/mame/machine/hp9845_printer.h
+++ b/src/mame/machine/hp9845_printer.h
@@ -34,8 +34,8 @@ public:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
// PPU access
- DECLARE_READ16_MEMBER(printer_r);
- DECLARE_WRITE16_MEMBER(printer_w);
+ uint16_t printer_r(offs_t offset);
+ void printer_w(offs_t offset, uint16_t data);
private:
devcb_write_line m_irl_handler;