mirror of
https://github.com/holub/mame
synced 2025-06-07 21:33:45 +03:00
(nw)
This commit is contained in:
parent
273542f27d
commit
0e3a5aa2ac
@ -7,7 +7,8 @@
|
|||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
|
||||||
device_neogeo_cart_interface::device_neogeo_cart_interface(const machine_config &mconfig, device_t &device)
|
device_neogeo_cart_interface::device_neogeo_cart_interface(const machine_config &mconfig, device_t &device)
|
||||||
: device_slot_card_interface(mconfig, device),
|
: device_slot_card_interface(mconfig, device)
|
||||||
|
/*
|
||||||
m_rom(NULL),
|
m_rom(NULL),
|
||||||
m_fixed(NULL),
|
m_fixed(NULL),
|
||||||
m_sprites(NULL),
|
m_sprites(NULL),
|
||||||
@ -16,6 +17,7 @@ device_neogeo_cart_interface::device_neogeo_cart_interface(const machine_config
|
|||||||
m_ym(NULL),
|
m_ym(NULL),
|
||||||
m_ymdelta(NULL),
|
m_ymdelta(NULL),
|
||||||
m_audiocrypt(NULL)
|
m_audiocrypt(NULL)
|
||||||
|
*/
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -892,7 +892,8 @@ void neogeo_state::neogeo_audio_cpu_banking_init(int set_entry)
|
|||||||
m_bank_audio_main->configure_entry(0, memregion("audiobios")->base());
|
m_bank_audio_main->configure_entry(0, memregion("audiobios")->base());
|
||||||
else /* on hardware with no SM1 ROM, the cart ROM is always enabled */
|
else /* on hardware with no SM1 ROM, the cart ROM is always enabled */
|
||||||
m_bank_audio_main->configure_entry(0, memregion("audiocpu")->base());
|
m_bank_audio_main->configure_entry(0, memregion("audiocpu")->base());
|
||||||
if (set_entry) m_bank_audio_main->set_entry(0); // don't do this when changing slots
|
|
||||||
|
if (set_entry || (m_type == NEOGEO_AES)) m_bank_audio_main->set_entry(0); // don't do this when changing slots
|
||||||
|
|
||||||
/* audio banking */
|
/* audio banking */
|
||||||
m_bank_audio_cart[0] = membank("audio_f000");
|
m_bank_audio_cart[0] = membank("audio_f000");
|
||||||
|
Loading…
Reference in New Issue
Block a user