1.1 --- a/Hardware/CPU/AMD10CPU.cs Thu Sep 30 20:59:21 2010 +0000
1.2 +++ b/Hardware/CPU/AMD10CPU.cs Fri Oct 01 19:01:09 2010 +0000
1.3 @@ -64,8 +64,6 @@
1.4
1.5 private double timeStampCounterMultiplier;
1.6
1.7 - private StringBuilder debug = new StringBuilder();
1.8 -
1.9 public AMD10CPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
1.10 : base(processorIndex, cpuid, settings)
1.11 {
1.12 @@ -180,9 +178,6 @@
1.13 CultureInfo.InvariantCulture));
1.14 r.AppendLine();
1.15
1.16 - r.Append(debug);
1.17 - r.AppendLine();
1.18 -
1.19 return r.ToString();
1.20 }
1.21