summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/bondwell/bw2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/bondwell/bw2.cpp')
-rw-r--r--src/mame/bondwell/bw2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/bondwell/bw2.cpp b/src/mame/bondwell/bw2.cpp
index 14f38fc75b7..2a57abdb89c 100644
--- a/src/mame/bondwell/bw2.cpp
+++ b/src/mame/bondwell/bw2.cpp
@@ -562,7 +562,7 @@ void bw2_state::bw2(machine_config &config)
PALETTE(config, "palette", FUNC(bw2_state::bw2_palette), 2);
// devices
- PIT8253(config, m_pit, 0);
+ PIT8253(config, m_pit);
m_pit->set_clk<0>(16_MHz_XTAL / 4); // 8251 USART TXC, RXC
m_pit->out_handler<0>().set(m_uart, FUNC(i8251_device::write_txc));
m_pit->out_handler<0>().append(m_uart, FUNC(i8251_device::write_rxc));
@@ -587,7 +587,7 @@ void bw2_state::bw2(machine_config &config)
output_latch_device &latch(OUTPUT_LATCH(config, "cent_data_out"));
m_centronics->set_output_latch(latch);
- I8251(config, m_uart, 0);
+ I8251(config, m_uart);
m_uart->txd_handler().set(RS232_TAG, FUNC(rs232_port_device::write_txd));
m_uart->dtr_handler().set(RS232_TAG, FUNC(rs232_port_device::write_dtr));
m_uart->rts_handler().set(RS232_TAG, FUNC(rs232_port_device::write_rts));