1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-05 09:28:54 +00:00

Trace output fix

This commit is contained in:
Karol Stasiak 2018-04-15 02:21:28 +02:00
parent 58f85bb46e
commit a2171aeef0

View File

@ -48,7 +48,7 @@ case class CpuImportance(a: Importance = UnknownImportance,
r0: Importance = UnknownImportance,
r1: Importance = UnknownImportance,
) {
override def toString: String = s"A=$a,B=$ah,X=$x,Y=$y,Z=$iz; Z=$z,N=$n,C=$c,V=$v,D=$d,M=$m,X=$w; R0=$r0,R1:$r1"
override def toString: String = s"A=$a,B=$ah,X=$x,Y=$y,Z=$iz; Z=$z,N=$n,C=$c,V=$v,D=$d,M=$m,X=$w; R0=$r0,R1=$r1"
def ~(that: CpuImportance) = new CpuImportance(
a = this.a ~ that.a,