Add tools/free_space.awk

This commit is contained in:
Rangi 2018-07-17 20:07:39 -04:00
parent 3e14c1f26e
commit e90857dea1
1 changed files with 13 additions and 0 deletions

13
tools/free_space.awk Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/awk -f
# Usage: tools/free_space.awk pokecrystal.map
BEGIN {
total = free = 16384 * 128
}
/^ SECTION: \$[0-7]/ {
free -= strtonum("0x" substr($3, 3))
}
END {
printf "Free space: %d/%d (%.2f%%)\n", free, total, free * 100 / total
}