mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
hornet.cpp: Add notes for scope screen, Fix raw parameters (#6776)
This commit is contained in:
parent
3a2e4c0c50
commit
623e6395ef
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user