Skip to content

Commit

Permalink
Add ramcode section to ram use calc
Browse files Browse the repository at this point in the history
  • Loading branch information
p3p committed Oct 31, 2019
1 parent 8d1333f commit 41297bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@

LIBS=["c", "gcc", "m"],

SIZEPROGREGEXP=r"^(?:\.text|\.data|\.rodata|\.text.align|\.ARM.exidx)\s+(\d+).*",
SIZEDATAREGEXP=r"^(?:\.data|\.bss|\.noinit)\s+(\d+).*",
SIZEPROGREGEXP=r"^(?:\.text|\.ramcode|\.data|\.rodata|\.text.align|\.ARM.exidx)\s+(\d+).*",
SIZEDATAREGEXP=r"^(?:\.data|\.ramcode|\.bss|\.noinit)\s+(\d+).*",
SIZECHECKCMD="$SIZETOOL -A -d $SOURCES",
SIZEPRINTCMD='$SIZETOOL -B -d $SOURCES',

Expand Down

0 comments on commit 41297bb

Please sign in to comment.