diff options
Diffstat (limited to 'src/devices/video/dp8350.cpp')
-rw-r--r-- | src/devices/video/dp8350.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/devices/video/dp8350.cpp b/src/devices/video/dp8350.cpp index 6d240c68793..a522220849e 100644 --- a/src/devices/video/dp8350.cpp +++ b/src/devices/video/dp8350.cpp @@ -66,12 +66,12 @@ DEFINE_DEVICE_TYPE(DP8367, dp8367_device, "dp8367", "DP8367 CRTC") //------------------------------------------------- dp835x_device::dp835x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, - int char_width, int char_height, int chars_per_row, int rows_per_frame, - int vsync_delay_f1, int vsync_width_f1, int vblank_interval_f1, - int vsync_delay_f0, int vsync_width_f0, int vblank_interval_f0, - int chars_per_line, int hsync_delay, int hsync_width, int vblank_stop, - bool cursor_on_all_lines, int lbc_0_width, int hsync_serration, - bool hsync_active, bool vsync_active, bool vblank_active) + int char_width, int char_height, int chars_per_row, int rows_per_frame, + int vsync_delay_f1, int vsync_width_f1, int vblank_interval_f1, + int vsync_delay_f0, int vsync_width_f0, int vblank_interval_f0, + int chars_per_line, int hsync_delay, int hsync_width, int vblank_stop, + bool cursor_on_all_lines, int lbc_0_width, int hsync_serration, + bool hsync_active, bool vsync_active, bool vblank_active) : device_t(mconfig, type, tag, owner, clock) , device_video_interface(mconfig, *this) , m_char_width(char_width) @@ -124,12 +124,12 @@ dp835x_device::dp835x_device(const machine_config &mconfig, device_type type, co dp8350_device::dp8350_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : dp835x_device(mconfig, DP8350, tag, owner, clock, - 7, 10, 80, 24, - 4, 10, 20, - 30, 10, 72, - 100, 0, 43, 1, // yes, the horizontal sync pulse is more than twice as long as the blanking period - true, 4, 0, - true, false, true) + 7, 10, 80, 24, + 4, 10, 20, + 30, 10, 72, + 100, 0, 43, 1, // yes, the horizontal sync pulse is more than twice as long as the blanking period + true, 4, 0, + true, false, true) { } @@ -140,12 +140,12 @@ dp8350_device::dp8350_device(const machine_config &mconfig, const char *tag, dev dp8367_device::dp8367_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : dp835x_device(mconfig, DP8367, tag, owner, clock, - 9, 15, 80, 26, - 0, 19, 25, - 38, 64, 108, - 115, -16, 7, 1, // value of vblank_stop assumed - true, 5, 0, // values assumed - true, true, true) + 9, 15, 80, 26, + 0, 19, 25, + 38, 64, 108, + 115, -16, 7, 1, // value of vblank_stop assumed + true, 5, 0, // values assumed + true, true, true) { } |