summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/technos/battlane.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/mame/technos/battlane.cpp
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/mame/technos/battlane.cpp')
-rw-r--r--src/mame/technos/battlane.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/technos/battlane.cpp b/src/mame/technos/battlane.cpp
index 60a513b4a99..a9950773c5c 100644
--- a/src/mame/technos/battlane.cpp
+++ b/src/mame/technos/battlane.cpp
@@ -553,11 +553,11 @@ void battlane_state::machine_reset()
void battlane_state::battlane(machine_config &config)
{
// TODO: measure clocks and determine whether CPUs are MC6809 or MC6809E (both are surface-scratched)
- MC6809E(config, m_maincpu, 1'500'000);
+ MC6809E(config, m_maincpu, XTAL::u(1'500'000));
m_maincpu->set_addrmap(AS_PROGRAM, &battlane_state::prg_map);
m_maincpu->set_vblank_int("screen", FUNC(battlane_state::cpu1_interrupt));
- MC6809E(config, m_subcpu, 1'500'000);
+ MC6809E(config, m_subcpu, XTAL::u(1'500'000));
m_subcpu->set_addrmap(AS_PROGRAM, &battlane_state::prg_map);
config.set_maximum_quantum(attotime::from_hz(6000));
@@ -577,7 +577,7 @@ void battlane_state::battlane(machine_config &config)
// sound hardware
SPEAKER(config, "mono").front_center();
- ym3526_device &ymsnd(YM3526(config, "ymsnd", 3'000'000));
+ ym3526_device &ymsnd(YM3526(config, "ymsnd", XTAL::u(3'000'000)));
ymsnd.irq_handler().set_inputline(m_maincpu, M6809_FIRQ_LINE);
ymsnd.add_route(ALL_OUTPUTS, "mono", 1.0);
}