Previous 199869 Revisions Next

r18612 Friday 19th October, 2012 at 20:22:20 UTC by R. Belmont
Drink from the firehose, my pretties (nw)
[src/emu/debug]dvmemory.c

trunk/src/emu/debug/dvmemory.c
r18611r18612
180180      if (itemname == NULL)
181181         break;
182182
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))
185186      {
186         name.cpy(strrchr(itemname, '/') + 1);
187            name.cpy(itemname);
187188         m_source_list.append(*auto_alloc(machine(), debug_view_memory_source(name, base, valsize, valcount)));
188189      }
189190   }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team