From 425c1ed771f0fbd31075b421667b7501890bff2b Mon Sep 17 00:00:00 2001 From: yz70s Date: Tue, 24 Dec 2019 15:16:54 +0100 Subject: Remove validity check error in mc1502 (nw) --- src/mame/drivers/mc1502.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/mc1502.cpp b/src/mame/drivers/mc1502.cpp index fa8957a2ed5..4c3a01bedfc 100644 --- a/src/mame/drivers/mc1502.cpp +++ b/src/mame/drivers/mc1502.cpp @@ -294,7 +294,7 @@ void mc1502_state::mc1502(machine_config &config) ISA8_SLOT(config, "board0", 0, "isa", mc1502_isa8_cards, "cga_mc1502", true); // FIXME: determine ISA bus clock ISA8_SLOT(config, "isa1", 0, "isa", mc1502_isa8_cards, "fdc", false).set_option_machine_config("fdc", [this](device_t *device) { fdc_config(device); }); - ISA8_SLOT(config, "isa2", 0, "isa", mc1502_isa8_cards, "rom", false); + ISA8_SLOT(config, "isa2", 0, "isa", mc1502_isa8_cards, "rom", false).set_option_machine_config("fdc", [this](device_t* device) { fdc_config(device); }); SPEAKER(config, "mono").front_center(); SPEAKER_SOUND(config, "speaker").add_route(ALL_OUTPUTS, "mono", 0.80); -- cgit v1.2.3