summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/sort_symfile.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/sort_symfile.sh b/tools/sort_symfile.sh
index d53150faa..edde25e75 100755
--- a/tools/sort_symfile.sh
+++ b/tools/sort_symfile.sh
@@ -1,10 +1,13 @@
#!/bin/sh
-sed $1 \
+TEMP_FILE=$(mktemp)
+sed \
-e "s/^..:[0-3]/0_ROM0@&/g" \
-e "s/^..:[4-7]/1_ROMX@&/g" \
-e "s/^..:[8-9]/2_VRAM@&/g" \
-e "s/^..:[A-B]/3_SRAM@&/g" \
-e "s/^00:[C-D]/4_WRAM0@&/g" \
-e "s/^..:[D-D]/5_WRAMX@&/g" \
-| sort -o $1
-sed -i $1 -e "s/^\w*@//g"
+ $1 \
+| sort \
+| sed -e "s/^.*@//g" > $TEMP_FILE
+mv $TEMP_FILE $1