diff options
Diffstat (limited to 'src/mame/namco/wacky_gator.cpp')
-rw-r--r-- | src/mame/namco/wacky_gator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/namco/wacky_gator.cpp b/src/mame/namco/wacky_gator.cpp index 1dfbcf2a069..ffab6096bff 100644 --- a/src/mame/namco/wacky_gator.cpp +++ b/src/mame/namco/wacky_gator.cpp @@ -318,7 +318,7 @@ void wackygtr_state::wackygtr(machine_config &config) ppi2.in_pb_callback().set_ioport("IN1"); ppi2.in_pc_callback().set_ioport("IN2"); - PIT8253(config, m_pit8253[0], 0); + PIT8253(config, m_pit8253[0]); m_pit8253[0]->set_clk<0>(XTAL(3'579'545)/16); // this is a guess m_pit8253[0]->out_handler<0>().set(FUNC(wackygtr_state::alligator_ck<0>)); m_pit8253[0]->set_clk<1>(XTAL(3'579'545)/16); // this is a guess @@ -326,7 +326,7 @@ void wackygtr_state::wackygtr(machine_config &config) m_pit8253[0]->set_clk<2>(XTAL(3'579'545)/16); // this is a guess m_pit8253[0]->out_handler<2>().set(FUNC(wackygtr_state::alligator_ck<2>)); - PIT8253(config, m_pit8253[1], 0); + PIT8253(config, m_pit8253[1]); m_pit8253[1]->set_clk<0>(XTAL(3'579'545)/16); // this is a guess m_pit8253[1]->out_handler<0>().set_inputline(m_maincpu, M6809_FIRQ_LINE); m_pit8253[1]->set_clk<1>(XTAL(3'579'545)/16); // this is a guess |