diff options
author | 2019-09-19 22:12:58 +1000 | |
---|---|---|
committer | 2019-09-19 22:12:58 +1000 | |
commit | cc25024f791747fa17c1f06bd81c482a86aac91b (patch) | |
tree | 77542cbfe6a73c5a7a74b8368dbbb3becab1eab1 | |
parent | cfde378dfbbf78e5a70000459c8c7f4e2eba99ac (diff) |
(nw) mycom: seems a HD6845S is a closer match
-rw-r--r-- | src/mame/drivers/mycom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mycom.cpp b/src/mame/drivers/mycom.cpp index a13c15e4664..f63fb57704d 100644 --- a/src/mame/drivers/mycom.cpp +++ b/src/mame/drivers/mycom.cpp @@ -540,8 +540,8 @@ void mycom_state::mycom(machine_config &config) GFXDECODE(config, "gfxdecode", m_palette, gfx_mycom); /* Manual states clock is 1.008mhz for 40 cols, and 2.016 mhz for 80 cols. - The start registers need to be readable. */ - MC6845_1(config, m_crtc, 1008000); + The manual states the CRTC is a HD46505S (apparently same as HD6845S). The start registers need to be readable. */ + HD6845S(config, m_crtc, 1008000); m_crtc->set_screen("screen"); m_crtc->set_show_border_area(false); m_crtc->set_char_width(8); |