diff options
Diffstat (limited to 'src/mame/misc/bingor.cpp')
-rw-r--r-- | src/mame/misc/bingor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/misc/bingor.cpp b/src/mame/misc/bingor.cpp index 1d20658a6e3..b78845aa623 100644 --- a/src/mame/misc/bingor.cpp +++ b/src/mame/misc/bingor.cpp @@ -697,7 +697,7 @@ void bingor_state::bingor(machine_config &config) m_maincpu->set_periodic_int(FUNC(bingor_state::nmi_line_pulse), attotime::from_hz(30)); // Other interrupts generated by internal timers - PIC16C57(config, "pic", 12000000); //?? Mhz + PIC16C57(config, "pic", XTAL::u(12000000)); //?? Mhz GFXDECODE(config, "gfxdecode", m_palette, gfx_bingor); // NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); @@ -712,7 +712,7 @@ void bingor_state::bingor(machine_config &config) PALETTE(config, m_palette).set_format(palette_device::RGBI_4444, 0x10); SPEAKER(config, "mono").front_center(); - SAA1099(config, "saa", 6000000).add_route(ALL_OUTPUTS, "mono", 0.50); + SAA1099(config, "saa", XTAL::u(6000000)).add_route(ALL_OUTPUTS, "mono", 0.50); } void bingor_state::bingor2(machine_config &config) @@ -787,7 +787,7 @@ void bingor_state::vip2000(machine_config &config) GENERIC_LATCH_8(config, "toslave"); GENERIC_LATCH_8(config, "fromslave"); - ymz284_device &ymz(YMZ284(config, "ymz", 1250000)); // probably clocked by square wave output of 80186 timer 0 + ymz284_device &ymz(YMZ284(config, "ymz", XTAL::u(1250000))); // probably clocked by square wave output of 80186 timer 0 ymz.add_route(ALL_OUTPUTS, "mono", 0.50); } |