aboutsummaryrefslogtreecommitdiff
path: root/size.pl
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-01-16 16:51:40 -0500
committerB. Watson <yalhcru@gmail.com>2016-01-16 16:51:40 -0500
commit044e5105b5bcffcc6875280627e37040c6482c9e (patch)
treef91cd22a06161e2b217cbed08526a73bed8776d6 /size.pl
parentc4a066ea93d96883c9098730bc955cc7eabd0d81 (diff)
downloadtaipan-044e5105b5bcffcc6875280627e37040c6482c9e.tar.gz
you're a (m|b|tr)illionaire, plus tighten up code some more
Diffstat (limited to 'size.pl')
-rw-r--r--size.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/size.pl b/size.pl
index 1d012bc..0ec2c4a 100644
--- a/size.pl
+++ b/size.pl
@@ -13,7 +13,7 @@ close MAP;
$free = (0xbc20 - $stack_size) - $bss_end + 1;
-printf " code ends at \$%04x\n", ($bss_start - 1);
-printf " BSS ends at \$%04x\n", $bss_end;
-printf "stack starts at \$%04x\n", 0xbc20 - $stack_size;
-printf "free code space \$%04x (%d, %.1fK)\n", $free, $free, $free / 1024;
+printf "===> code ends at \$%04x\n", ($bss_start - 1);
+printf "===> BSS ends at \$%04x\n", $bss_end;
+printf "===> stack starts at \$%04x\n", 0xbc20 - $stack_size;
+printf "===> free code space \$%04x (%d, %.1fK)\n", $free, $free, $free / 1024;