mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
minor shuffle (nw)
This commit is contained in:
parent
bac87f62fa
commit
b548623691
@ -4963,20 +4963,16 @@ ROM_END
|
||||
|
||||
DRIVER_INIT_MEMBER(system1_state,bank00)
|
||||
{
|
||||
m_videomode_custom = nullptr;
|
||||
m_banked_decrypted_opcodes = nullptr;
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(system1_state,bank44)
|
||||
{
|
||||
m_videomode_custom = &system1_state::bank44_custom_w;
|
||||
m_banked_decrypted_opcodes = nullptr;
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(system1_state,bank0c)
|
||||
{
|
||||
m_videomode_custom = &system1_state::bank0c_custom_w;
|
||||
m_banked_decrypted_opcodes = nullptr;
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(system1_state,sega315_5033)
|
||||
|
@ -14,6 +14,7 @@ public:
|
||||
m_nob_mcu_latch(*this, "nob_mcu_latch"),
|
||||
m_nob_mcu_status(*this, "nob_mcu_status"),
|
||||
m_paletteram(*this, "palette"),
|
||||
m_videomode_custom(nullptr),
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_soundcpu(*this, "soundcpu"),
|
||||
m_mcu(*this, "mcu"),
|
||||
@ -25,7 +26,9 @@ public:
|
||||
m_color_prom(*this, "palette"),
|
||||
m_bank1(*this, "bank1"),
|
||||
m_bank0d(*this, "bank0d"),
|
||||
m_bank1d(*this, "bank1d") { }
|
||||
m_bank1d(*this, "bank1d"),
|
||||
m_banked_decrypted_opcodes(nullptr)
|
||||
{ }
|
||||
|
||||
optional_device<i8255_device> m_ppi8255;
|
||||
required_shared_ptr<UINT8> m_ram;
|
||||
|
Loading…
Reference in New Issue
Block a user