From 96789c582bc2c946b10a2a172e33bc0aa9dccbda Mon Sep 17 00:00:00 2001 From: cracyc Date: Mon, 10 Apr 2023 09:01:23 -0500 Subject: lw350: fix dictionary bank --- src/mame/brother/lw350.cpp | 2 +- src/mame/brother/lw700i.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/brother/lw350.cpp b/src/mame/brother/lw350.cpp index 3f00cc9eee5..41fa108af47 100644 --- a/src/mame/brother/lw350.cpp +++ b/src/mame/brother/lw350.cpp @@ -571,7 +571,7 @@ public: speaker(*this, "beeper"), io_kbrow(*this, "kbrow.%u", 0), rom(*this, "maincpu"), - rombank(*this, "rom") + rombank(*this, "dictionary") { } void lw450(machine_config& config); diff --git a/src/mame/brother/lw700i.cpp b/src/mame/brother/lw700i.cpp index 10eb79a7388..ac1ca5e24d1 100644 --- a/src/mame/brother/lw700i.cpp +++ b/src/mame/brother/lw700i.cpp @@ -284,7 +284,7 @@ void lw700i_state::lw700i(machine_config &config) H83003(config, m_maincpu, XTAL(16'000'000)); m_maincpu->set_addrmap(AS_PROGRAM, &lw700i_state::main_map); m_maincpu->set_addrmap(AS_IO, &lw700i_state::io_map); - m_maincpu->tend0().set(m_fdc, FUNC(hd63266f_device::tc_line_w)); + m_maincpu->tend2().set(m_fdc, FUNC(hd63266f_device::tc_line_w)); TIMER(config, "scantimer").configure_scanline(FUNC(lw700i_state::vbl_interrupt), "screen", 0, 1); SCREEN(config, m_screen, SCREEN_TYPE_LCD); -- cgit v1.2.3