Merge pull request #528 from jfdelnero/master

Last manual merging fix. (bad bus address width and clock_freq not initialized.)
This commit is contained in:
Miodrag Milanović 2015-12-28 12:43:16 +01:00
commit ff34bc4632

View File

@ -99,10 +99,11 @@ ef9365_device::ef9365_device(const machine_config &mconfig, const char *tag, dev
device_t(mconfig, EF9365, "EF9365", tag, owner, clock, "ef9365", __FILE__),
device_memory_interface(mconfig, *this),
device_video_interface(mconfig, *this),
m_space_config("videoram", ENDIANNESS_LITTLE, 8, 16, 0, nullptr, *ADDRESS_MAP_NAME(ef9365)),
m_space_config("videoram", ENDIANNESS_LITTLE, 8, 18, 0, nullptr, *ADDRESS_MAP_NAME(ef9365)),
m_palette(*this),
m_irq_handler(*this)
{
clock_freq = clock;
}
//-------------------------------------------------