diff options
author | 2020-03-11 20:04:17 +0100 | |
---|---|---|
committer | 2020-03-11 20:04:17 +0100 | |
commit | 59337f9e503618cf287a1888da376010d6611682 (patch) | |
tree | 092fe65b1aae8aec16cd9bbe4cb80ecdcf25c670 /src/devices/video/mb88303.h | |
parent | 29f838fe84ff1de3ff852c3f8421fbe2b6b0067d (diff) |
src/devices: simplified some handlers (nw)
Diffstat (limited to 'src/devices/video/mb88303.h')
-rw-r--r-- | src/devices/video/mb88303.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/video/mb88303.h b/src/devices/video/mb88303.h index f8804adff61..742c6b62beb 100644 --- a/src/devices/video/mb88303.h +++ b/src/devices/video/mb88303.h @@ -45,12 +45,12 @@ public: auto vobn_callback() { return m_write_vobn.bind(); } auto do_callback() { return m_write_do.bind(); } - DECLARE_WRITE8_MEMBER(da_w); - DECLARE_WRITE_LINE_MEMBER(adm_w); - DECLARE_WRITE_LINE_MEMBER(reset_n_w); - DECLARE_WRITE_LINE_MEMBER(ldi_w); - DECLARE_WRITE_LINE_MEMBER(hsync_n_w); - DECLARE_WRITE_LINE_MEMBER(vsync_n_w); + void da_w(uint8_t data); + void adm_w(int state); + void reset_n_w(int state); + void ldi_w(int state); + void hsync_n_w(int state); + void vsync_n_w(int state); void update_bitmap(bitmap_rgb32 &bitmap, const rectangle &cliprect); |