mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-04-03 23:31:31 +00:00
Fix profiler scope output
This commit is contained in:
parent
0218652650
commit
35ea9c7b7d
@ -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");
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user