mc10: fix raster timing to hide vertical retrace lines (#8409)

This commit is contained in:
tim lindner 2021-08-09 07:27:17 -07:00 committed by GitHub
parent fb0db04135
commit c6fd0a77d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -513,7 +513,7 @@ void mc10_state::mc10_video(machine_config &config)
RAM(config, m_ram).set_default_size("4K").set_extra_options("8K,20K,32K");
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER).set_raw(9.828_MHz_XTAL / 2, 320, 0, 320, 243, 0, 243);
SCREEN(config, "screen", SCREEN_TYPE_RASTER).set_raw(3.579545_MHz_XTAL * 2, 456, 0, 320, 262, 0, 240);
mc6847_ntsc_device &vdg(MC6847_NTSC(config, "mc6847", XTAL(3'579'545)));
vdg.set_screen("screen");