From 5432976d693b3585f895db122519e9c547d9cd8b Mon Sep 17 00:00:00 2001 From: hap Date: Sun, 13 Nov 2022 12:57:20 +0100 Subject: [PATCH] msx easi_speech: remove workaround that's not needed anymore --- src/devices/bus/msx_cart/easi_speech.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/devices/bus/msx_cart/easi_speech.cpp b/src/devices/bus/msx_cart/easi_speech.cpp index 381b26f06ff..cd206164802 100644 --- a/src/devices/bus/msx_cart/easi_speech.cpp +++ b/src/devices/bus/msx_cart/easi_speech.cpp @@ -48,9 +48,6 @@ void msx_cart_easispeech_device::initialize_cartridge() } page(1)->install_rom(0x4000, 0x5fff, 0x2000, get_rom_base()); - - // Without this line the read and write handler don't get picked up?? - page(2)->install_rom(0x8000, 0x8000, get_rom_base()); page(2)->install_read_handler(0x8000, 0x8000, read8smo_delegate(*this, FUNC(msx_cart_easispeech_device::speech_r))); page(2)->install_write_handler(0x8000, 0x8000, write8smo_delegate(*this, FUNC(msx_cart_easispeech_device::speech_w))); }