Allow AM_NOP in device address maps, there may be others that should be allowed. [smf]

This commit is contained in:
smf- 2013-06-01 14:39:37 +00:00
parent ff9092b8b8
commit 6046a3af4e

View File

@ -816,7 +816,7 @@ void address_map::uplift_submaps(running_machine &machine, device_t &device, dev
if (mdata.m_type == AMH_NONE)
continue;
if (mdata.m_type != AMH_DEVICE_DELEGATE)
if (mdata.m_type != AMH_DEVICE_DELEGATE && mdata.m_type != AMH_NOP)
throw emu_fatalerror("Only normal read/write methods are accepted in device submaps.\n");
if (mdata.m_bits == 0 && entry_bits != m_databits)