Previous 199869 Revisions Next

r36390 Thursday 12th March, 2015 at 13:54:25 UTC by hap
for raw opcode view, don't crop under minbytes
[src/emu/debug]dvdisasm.c

trunk/src/emu/debug/dvdisasm.c
r244901r244902
319319
320320   // if we ran out of room, indicate more
321321   string[maxchars - 1] = 0;
322   if (byte < numbytes && maxchars > (char_num*2 -1))
322   if (byte < numbytes && byte != minbytes && maxchars > (char_num*2 -1))
323323      string[maxchars - char_num] = string[maxchars - char_num - 1] = string[maxchars - char_num -2] = '.';
324324}
325325
r244901r244902
433433   m_last_direct_raw = source.m_space.direct().raw();
434434   m_last_change_count = source.m_device.debug()->comment_change_count();
435435
436   // now longer need to recompute
436   // no longer need to recompute
437437   m_recompute = false;
438438   return changed;
439439}


Previous 199869 Revisions Next


© 1997-2024 The MAME Team