mirror of
https://git.sr.ht/~rabbits/uxn
synced 2025-01-07 08:01:17 +00:00
(uxnasm) Fix calculation of usage.
This commit is contained in:
parent
b2d6aa5fce
commit
0ae6992089
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ review(char *filename)
|
||||||
"Assembled %s in %d bytes(%.2f%% used), %d labels, %d macros.\n",
|
"Assembled %s in %d bytes(%.2f%% used), %d labels, %d macros.\n",
|
||||||
filename,
|
filename,
|
||||||
p.length - TRIM,
|
p.length - TRIM,
|
||||||
p.length / 652.80,
|
(p.length - TRIM) / 652.80,
|
||||||
p.llen,
|
p.llen,
|
||||||
p.mlen);
|
p.mlen);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue