diff options
author | 2023-05-31 17:43:46 +0200 | |
---|---|---|
committer | 2023-06-01 01:43:46 +1000 | |
commit | 9f661e567c4528e7f7f662209e4b677f12b99875 (patch) | |
tree | 5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/video/dp8510.h | |
parent | a9935073709fffa95130ef1b7ea701c3a2325b9b (diff) |
emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit function signatures. (#11283) [Ryan Holtz]
Diffstat (limited to 'src/devices/video/dp8510.h')
-rw-r--r-- | src/devices/video/dp8510.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/video/dp8510.h b/src/devices/video/dp8510.h index 04a0c2b1676..0f1247599a1 100644 --- a/src/devices/video/dp8510.h +++ b/src/devices/video/dp8510.h @@ -14,12 +14,12 @@ public: static const char *const BITBLT_OP[]; static const int FIFO_SIZE = 16; - DECLARE_WRITE_LINE_MEMBER(line_drawing) { m_line_drawing = state; } - DECLARE_WRITE_LINE_MEMBER(barrel_input_select) { m_barrel_input_select = state; } - DECLARE_WRITE_LINE_MEMBER(pixel_data_input) { m_pixel_data_input = state; } - DECLARE_WRITE_LINE_MEMBER(data_output_select) { m_data_output_select = state; } - DECLARE_WRITE_LINE_MEMBER(left_mask_enable) { m_left_mask = state; } - DECLARE_WRITE_LINE_MEMBER(right_mask_enable) { m_right_mask = state; } + void line_drawing(int state) { m_line_drawing = state; } + void barrel_input_select(int state) { m_barrel_input_select = state; } + void pixel_data_input(int state) { m_pixel_data_input = state; } + void data_output_select(int state) { m_data_output_select = state; } + void left_mask_enable(int state) { m_left_mask = state; } + void right_mask_enable(int state) { m_right_mask = state; } enum control_mask : u16 { |