Beispiel #1
0
 private bool dasmPanel_CheckBreakpoint(object sender, ushort addr)
 {
     foreach (var bp in m_spectrum.GetBreakpointList())
     {
         if (bp.Address.HasValue && bp.Address == addr)
         {
             return(true);
         }
     }
     return(false);
 }