mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-21 00:29:07 +00:00
Tidy total cycles calculations
This commit is contained in:
parent
fcc97bea7b
commit
95fbfb3ccd
@ -64,12 +64,14 @@
|
||||
{
|
||||
get
|
||||
{
|
||||
Debug.Assert(this.totalCyclesValid);
|
||||
return this.totalCycles;
|
||||
}
|
||||
private set
|
||||
{
|
||||
Debug.Assert(!this.totalCyclesValid);
|
||||
this.totalCycles = value;
|
||||
this.totalCyclesValid = true;
|
||||
}
|
||||
}
|
||||
public void Generate()
|
||||
@ -88,7 +90,6 @@
|
||||
private void EmitProfileInformation()
|
||||
{
|
||||
this.TotalCycles = this.instructionCycles.Sum();
|
||||
this.totalCyclesValid = true;
|
||||
|
||||
this.EmitProfileLineInformation();
|
||||
this.EmitProfileScopeInformation();
|
||||
|
Loading…
x
Reference in New Issue
Block a user