mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
fidel*: removed last remaining MACHINE_CONFIG_START (nw)
This commit is contained in:
parent
0bbb9faa1f
commit
11d0b41e5f
@ -640,7 +640,8 @@ void fidel68k_state::fdes2325(machine_config &config)
|
||||
config.set_default_layout(layout_fidel_desdis_68kg);
|
||||
}
|
||||
|
||||
MACHINE_CONFIG_START(fidel68k_state::eag_base)
|
||||
void fidel68k_state::eag_base(machine_config &config)
|
||||
{
|
||||
/* basic machine hardware */
|
||||
M68000(config, m_maincpu, 16_MHz_XTAL);
|
||||
m_maincpu->set_addrmap(AS_PROGRAM, &fidel68k_state::eag_map);
|
||||
@ -663,11 +664,11 @@ MACHINE_CONFIG_START(fidel68k_state::eag_base)
|
||||
vref.add_route(0, "dac", 1.0, DAC_VREF_POS_INPUT);
|
||||
|
||||
/* cartridge */
|
||||
MCFG_GENERIC_CARTSLOT_ADD("cartslot", generic_plain_slot, "fidel_scc")
|
||||
MCFG_GENERIC_EXTENSIONS("bin,dat")
|
||||
MCFG_GENERIC_LOAD(fidelbase_state, scc_cartridge)
|
||||
generic_cartslot_device &cartslot(GENERIC_CARTSLOT(config, "cartslot", generic_plain_slot, "fidel_scc", "bin,dat"));
|
||||
cartslot.set_device_load(device_image_load_delegate(&fidelbase_state::device_image_load_scc_cartridge, this));
|
||||
|
||||
SOFTWARE_LIST(config, "cart_list").set_original("fidel_scc");
|
||||
MACHINE_CONFIG_END
|
||||
}
|
||||
|
||||
void fidel68k_state::eag(machine_config &config)
|
||||
{
|
||||
|
@ -663,8 +663,8 @@ public:
|
||||
|
||||
private:
|
||||
// devices/pointers
|
||||
optional_device<i8041_device> m_mcu;
|
||||
optional_device<i8243_device> m_i8243;
|
||||
required_device<i8041_device> m_mcu;
|
||||
required_device<i8243_device> m_i8243;
|
||||
|
||||
void vbrc_prepare_display();
|
||||
DECLARE_WRITE8_MEMBER(vbrc_speech_w);
|
||||
@ -925,6 +925,7 @@ void ccx_state::ccx_prepare_display()
|
||||
display_matrix(8, 4, outdata, m_led_select >> 2 & 0xf);
|
||||
}
|
||||
|
||||
|
||||
// I8255 PPI
|
||||
|
||||
WRITE8_MEMBER(ccx_state::ccx_ppi_porta_w)
|
||||
|
Loading…
Reference in New Issue
Block a user