summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2020-04-06 12:41:44 -0400
committerGitHub <noreply@github.com>2020-04-06 12:41:44 -0400
commit9076d63d62c847dd74b02391a4744ba83c7770e8 (patch)
tree69cd3cd33c9457b40ac4503d69f3cf3c0604772e /tools
parente225d296b72a41cbee6e16416d8d1fcfb4760445 (diff)
parent3144b54bd1dcc47ea339fcd2bd215ec96fc38c4a (diff)
Merge pull request #705 from Rangi42/master
Upgrade to rgbds 0.4.0, and do miscellaneous fixes
Diffstat (limited to 'tools')
-rwxr-xr-xtools/sort_symfile.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/sort_symfile.sh b/tools/sort_symfile.sh
deleted file mode 100755
index a712b97c8..000000000
--- a/tools/sort_symfile.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-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-Ba-b]/3_SRAM@&/g" \
- -e "s/^00:[C-Dc-d]/4_WRAM0@&/g" \
- -e "s/^..:[D-Dd-d]/5_WRAMX@&/g" \
- -e "s/^..:[F-Ff-f]/6_HRAM@&/g" \
- $1 \
-| sort \
-| sed -e "s/^.*@//g" > $TEMP_FILE
-mv $TEMP_FILE $1