minor shuffle (nw)

This commit is contained in:
David Haywood 2016-04-11 20:46:54 +01:00
parent bac87f62fa
commit b548623691
2 changed files with 4 additions and 5 deletions

View File

@ -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)

View File

@ -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;