Fix profiler scope output

This commit is contained in:
Adrian Conlon 2024-06-06 09:08:54 +01:00
parent 0218652650
commit 35ea9c7b7d
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
_ = this._enumeration_keys.Add("type");
_ = this._integer_keys.Add("size");
_ = this._integer_keys.Add("parent");
_ = this._multiple_keys.Add("sym");
_ = this._integer_keys.Add("sym");
_ = this._multiple_keys.Add("span");
}
}

View File

@ -227,7 +227,7 @@ namespace M6502.Test
private void Profiler_EmitScope(object? sender, ProfileScopeEventArgs e)
{
var proportion = (double)e.Cycles / this.CPU.Cycles;
var proportion = (double)e.Cycles / this.profiler.TotalCycleCount;
Console.Out.Write(string.Format(CultureInfo.InvariantCulture, "\t[{0:P2}][{1:d9}][{2:d9}]\t{3}\n", proportion, e.Cycles, e.Count, e.Scope));
}