Skip to content

Commit

Permalink
Merge pull request #34 from WhenGryphonsFly/working
Browse files Browse the repository at this point in the history
Pokedex.c + Housekeeping
  • Loading branch information
WhenGryphonsFly committed Aug 31, 2023
2 parents 905b263 + 6884a5c commit ffc7af9
Show file tree
Hide file tree
Showing 14 changed files with 551 additions and 1,271 deletions.
3 changes: 1 addition & 2 deletions .github/calcrom/calcrom.pl
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@


my $total = $src + $lib + $asm;
$src = $src + $lib;
my $srcPct = 100 * $src / $total;
my $libPct = 100 * $lib / $total;
my $asmPct = 100 * $asm / $total;

if ($asm == 0)
Expand All @@ -199,7 +199,6 @@
{
printf "%8d total bytes of code\n", $total;
printf "%8d bytes of code in src (%.4f%%)\n", $src, $srcPct;
printf "%8d bytes of code in agbcc libraries (%.4f%%)\n", $lib, $libPct;
printf "%8d bytes of code in asm (%.4f%%)\n", $asm, $asmPct;
}
print "\n";
Expand Down
Loading

0 comments on commit ffc7af9

Please sign in to comment.