deecoseal: actually disable the 8031

This commit is contained in:
cracyc 2025-04-21 11:29:19 -05:00
parent 67b749ec61
commit 2c4b081267

View File

@ -117,7 +117,7 @@ void deecoseal_state::deecoseal(machine_config &config)
m_maincpu->set_addrmap(AS_PROGRAM, &deecoseal_state::map);
m_maincpu->set_addrmap(AS_IO, &deecoseal_state::io);
I80C31(config, m_mcs51, XTAL(24'000'000) / 4).disabled(); // clock?
I80C31(config, m_mcs51, XTAL(24'000'000) / 4).set_disable(); // clock?
m_mcs51->set_addrmap(AS_PROGRAM, &deecoseal_state::mcs51_map);
I2C_X2404P(config, "eeprom");