shithub: pokecrystal

ref: 4154f191e09404748de4faa3a63bcb51faf42c98
dir: /tools/free_space.awk/

View raw version
#!/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
}