trunk/src/emu/debug/dvmemory.c
| r18611 | r18612 | |
| 180 | 180 | if (itemname == NULL) |
| 181 | 181 | break; |
| 182 | 182 | |
| 183 | | // if this is a single-entry global, add it |
| 184 | | if (strstr(itemname, "state->")) |
| 183 | // add pretty much anything that's not a timer (we may wish to cull other items later) |
| 184 | // also, don't trim the front of the name, it's important to know which VIA6522 we're looking at, e.g. |
| 185 | if (strncmp(itemname, "timer/", 6)) |
| 185 | 186 | { |
| 186 | | name.cpy(strrchr(itemname, '/') + 1); |
| 187 | name.cpy(itemname); |
| 187 | 188 | m_source_list.append(*auto_alloc(machine(), debug_view_memory_source(name, base, valsize, valcount))); |
| 188 | 189 | } |
| 189 | 190 | } |