summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/hegenerglaser/mondial.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/hegenerglaser/mondial.cpp')
-rw-r--r--src/mame/hegenerglaser/mondial.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/hegenerglaser/mondial.cpp b/src/mame/hegenerglaser/mondial.cpp
index f863e8535d0..9bcae1fbdaa 100644
--- a/src/mame/hegenerglaser/mondial.cpp
+++ b/src/mame/hegenerglaser/mondial.cpp
@@ -163,7 +163,7 @@ INPUT_PORTS_END
void mondial_state::mondial(machine_config &config)
{
/* basic machine hardware */
- M65SC02(config, m_maincpu, 2000000);
+ M65SC02(config, m_maincpu, XTAL::u(2000000));
m_maincpu->set_addrmap(AS_PROGRAM, &mondial_state::mondial_mem);
const attotime irq_period = attotime::from_hz(2000000 / 0x1000);
@@ -182,7 +182,7 @@ void mondial_state::mondial(machine_config &config)
/* sound hardware */
SPEAKER(config, "speaker").front_center();
- BEEP(config, m_beeper, 2150); // approximation
+ BEEP(config, m_beeper, XTAL::u(2150)); // approximation
m_beeper->add_route(ALL_OUTPUTS, "speaker", 0.25);
}