Build fixes (nw)

This commit is contained in:
AJR 2017-06-26 16:32:52 -04:00
parent 38436b340d
commit 23e2d65182
2 changed files with 1 additions and 2 deletions

View File

@ -72,7 +72,7 @@ ADDRESS_MAP_END
void mpu_pc98_device::device_start()
{
address_space &iospace = machine().firstcpu->space(AS_IO);
iospace.install_device(0xe0d0, 0xe0d3, *this, map, 16, 0xffffffffffffffffU >> (64 - iospace.data_width()));
iospace.install_device(0xe0d0, 0xe0d3, *this, &mpu_pc98_device::map, 16, 0xffffffffffffffffU >> (64 - iospace.data_width()));
}
//-------------------------------------------------

View File

@ -96,7 +96,6 @@ mcs40_cpu_device_base::mcs40_cpu_device_base(
, m_cm_rom(0U), m_cm_ram(0U), m_cy(0U)
, m_pc(0U), m_pcbase(0U), m_genflags(0U)
{
assert(!((1 & sp_mask) | sp_mask));
assert((16U == index_reg_cnt) || (24U == index_reg_cnt));
}