(uxnasm) Fix calculation of usage.

This commit is contained in:
Andrew Alderwick 2022-02-18 23:01:46 +00:00
parent b2d6aa5fce
commit 0ae6992089
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ review(char *filename)
"Assembled %s in %d bytes(%.2f%% used), %d labels, %d macros.\n",
filename,
p.length - TRIM,
p.length / 652.80,
(p.length - TRIM) / 652.80,
p.llen,
p.mlen);
}