/// <summary>
 /// Remove All IPConfig
 /// </summary>
 public static void RemoveAllConfigIP()
 {
     AddressMap.Clear();
     MACMap.Clear();
     IPConfig.RemoveAll();
     NetworkConfig.Clear();
 }
Beispiel #2
0
 public void ClearAddressRange()
 {
     // When clearing the range, make sure that the initial code segment is added back to the address ranges. This would be called
     // for example when new instructions are loaded onto the VM. The disassembler will have to adjust the ranges it disassembled to
     // match new code.
     Map.Clear();
     Map.AddRange(new AddressRange(Target.GetMemory().SegmentMap[".main"].Range.Start, Target.GetMemory().SegmentMap[".main"].Range.End));
 }