trunk/src/emu/debug/dvdisasm.cpp
| r252987 | r252988 | |
| 100 | 100 | for (device_disasm_interface *dasm = iter.first(); dasm != nullptr; dasm = iter.next()) |
| 101 | 101 | { |
| 102 | 102 | 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()))); |
| 104 | 105 | } |
| 105 | 106 | |
| 106 | 107 | // reset the source to a known good entry |