diff options
author | 2017-12-28 21:21:03 -0500 | |
---|---|---|
committer | 2017-12-30 12:12:02 -0500 | |
commit | 9f1fd2676eb21c6e7e39b998a9de0568e9df12e4 (patch) | |
tree | eeb691ed357905f6851e1d30bd583c2279c63e5b /src/devices/video/mc6847.h | |
parent | 056dbde5389f83fb7f894bc788f8f0d82ca1d921 (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.h | 3 |
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; |