Previous 199869 Revisions Next

r44476 Monday 25th January, 2016 at 14:00:35 UTC by Miodrag Milanović
Fixed bug debugging drivers with es5510 core, possibly some others that do not have AS_PROGRAM at all (nw)
[src/emu/debug]dvdisasm.cpp

trunk/src/emu/debug/dvdisasm.cpp
r252987r252988
100100   for (device_disasm_interface *dasm = iter.first(); dasm != nullptr; dasm = iter.next())
101101   {
102102      strprintf(name,"%s '%s'", dasm->device().name(), dasm->device().tag());
103      m_source_list.append(*global_alloc(debug_view_disasm_source(name.c_str(), dasm->device())));
103      if (dasm->device().memory().space_config(AS_PROGRAM)!=nullptr)
104         m_source_list.append(*global_alloc(debug_view_disasm_source(name.c_str(), dasm->device())));
104105   }
105106
106107   // reset the source to a known good entry


Previous 199869 Revisions Next


© 1997-2024 The MAME Team