hornet.cpp: Add notes for scope screen, Fix raw parameters (#6776)

This commit is contained in:
cam900 2020-06-01 22:02:23 +09:00 committed by GitHub
parent 3a2e4c0c50
commit 623e6395ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1244,9 +1244,9 @@ void hornet_state::sscope(machine_config &config)
lscreen.set_raw(XTAL(64'000'000) / 4, 644, 41, 41 + 512, 428, 27, 27 + 384);
lscreen.set_screen_update(FUNC(hornet_state::screen_update));
screen_device &rscreen(SCREEN(config, "rscreen", SCREEN_TYPE_RASTER));
// default 24KHz parameter in both 037122 and voodoo, input clock correct? (58~Hz Vsync, 50MHz/3 or 64MHz/4?)
rscreen.set_raw(XTAL(64'000'000) / 4, 644, 41, 41 + 512, 428, 27, 27 + 384);
screen_device &rscreen(SCREEN(config, "rscreen", SCREEN_TYPE_RASTER)); // for scope
// scope screen is 15khz, verified default parameter in both 037122 and voodoo, input clock correct? (60~Hz Vsync, 50MHz/3 or 64MHz/4?)
rscreen.set_raw(XTAL(64'000'000) / 4, 1017, 106, 106 + 768, 262, 17, 17 + 236);
rscreen.set_screen_update(FUNC(hornet_state::screen_update_rscreen));
/* ADC12138(config, m_adc12138_2, 0);