mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
misc drivers: use socket device instead of cartslot where appropriate
This commit is contained in:
parent
7dcf827ecb
commit
d726ac85f9
@ -9,7 +9,7 @@ driver by Carlos A. Lozano <calb@gsyc.inf.uc3m.es>
|
||||
|
||||
TODO:
|
||||
- Fix priority kludge (see video/cop01.c)
|
||||
- Inaccurate of the 1412M2 protection chip in mightguy, used by the sound CPU.
|
||||
- Inaccurate 1412M2 protection chip emulation in mightguy, used by the sound CPU.
|
||||
This is probably an extra CPU (program rom is the ic2 one), presumably
|
||||
with data / address line scrambling
|
||||
- Some sound problems remaining, not just 1412M2, but see also MT7949
|
||||
|
@ -393,7 +393,7 @@ void const_state::ssensor4(machine_config &config)
|
||||
config.set_default_layout(layout_novag_ssensor4);
|
||||
|
||||
/* expansion */
|
||||
GENERIC_CARTSLOT(config, "exrom", generic_plain_slot, "novag_ssensor4");
|
||||
GENERIC_SOCKET(config, "exrom", generic_plain_slot, "novag_ssensor4");
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("novag_ssensor4");
|
||||
}
|
||||
|
||||
|
@ -288,7 +288,7 @@ void corona_state::corona(machine_config &config)
|
||||
DAC_1BIT(config, m_dac).add_route(ALL_OUTPUTS, "speaker", 0.25);
|
||||
|
||||
/* extension rom */
|
||||
GENERIC_CARTSLOT(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
GENERIC_SOCKET(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("saitek_egr").set_filter("egr2");
|
||||
}
|
||||
|
||||
|
@ -359,7 +359,7 @@ void simultano_state::simultano(machine_config &config)
|
||||
m_maincpu->set_periodic_int(FUNC(simultano_state::irq0_line_hold), attotime::from_hz(76)); // approximation
|
||||
|
||||
/* extension rom */
|
||||
GENERIC_CARTSLOT(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
GENERIC_SOCKET(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("saitek_egr").set_filter("egr2");
|
||||
}
|
||||
|
||||
|
@ -493,7 +493,7 @@ void stratos_state::stratos(machine_config &config)
|
||||
DAC_1BIT(config, m_dac).add_route(ALL_OUTPUTS, "speaker", 0.25);
|
||||
|
||||
/* extension rom */
|
||||
GENERIC_CARTSLOT(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
GENERIC_SOCKET(config, "extrom", generic_plain_slot, "saitek_egr");
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("saitek_egr");
|
||||
}
|
||||
|
||||
|
@ -228,7 +228,7 @@ void star_state::tstar432(machine_config &config)
|
||||
config.set_default_layout(layout_saitek_tstar432);
|
||||
|
||||
/* extension rom */
|
||||
GENERIC_CARTSLOT(config, "extrom", generic_plain_slot, "saitek_kso");
|
||||
GENERIC_SOCKET(config, "extrom", generic_plain_slot, "saitek_kso");
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("saitek_kso");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user