Esempio n. 1
0
 private void AddLabel(string label, ushort address)
 {
     _fixupRequired = true;
     if (!string.IsNullOrWhiteSpace(label))
     {
         if (!_labels.Add(label, address))
         {
             _logger.LogError($"Label '{label}' already defined");
             HasErrors = true;
         }
     }
 }