summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/mc6847.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-28 21:21:03 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-30 12:12:02 -0500
commit9f1fd2676eb21c6e7e39b998a9de0568e9df12e4 (patch)
treeeeb691ed357905f6851e1d30bd583c2279c63e5b /src/devices/video/mc6847.h
parent056dbde5389f83fb7f894bc788f8f0d82ca1d921 (diff)
The great CoCo/Dragon clock correction (nw)
- Replace fake XTAL values with actual ones - Correct SAM and GIME clocks - Make sam6883_friend_device a subclass of device_interface - Remove legacy 6809E device from MAME
Diffstat (limited to 'src/devices/video/mc6847.h')
-rw-r--r--src/devices/video/mc6847.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/video/mc6847.h b/src/devices/video/mc6847.h
index 0b0dabfd5b4..4b3838242c3 100644
--- a/src/devices/video/mc6847.h
+++ b/src/devices/video/mc6847.h
@@ -93,7 +93,7 @@ public:
protected:
mc6847_friend_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock,
- const uint8_t *fontdata, bool is_mc6847t1, double tpfs, int field_sync_falling_edge_scanline, bool supports_partial_body_scanlines);
+ const uint8_t *fontdata, bool is_mc6847t1, double tpfs, int field_sync_falling_edge_scanline, int divider, bool supports_partial_body_scanlines);
// timer constants
static constexpr device_timer_id TIMER_FRAME = 0;
@@ -479,6 +479,7 @@ private:
// incidentals
double m_tpfs;
+ int m_divider;
int m_field_sync_falling_edge_scanline;
bool m_wide;
bool m_video_changed;