From 7b64f7cd01d7306460b71a63ab78842545c5224f Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 17 Nov 2013 02:07:32 +0200 Subject: [PATCH] more complete disassembly --- run_mkpubinc.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/run_mkpubinc.sh b/run_mkpubinc.sh index 669a17b..a3d085f 100755 --- a/run_mkpubinc.sh +++ b/run_mkpubinc.sh @@ -6,5 +6,13 @@ cat StarCraft.asm | fromdos | sed -e \ '1,/^_rdata.*segment/d;/^_data_last/q;/^[[:blank:];]/d;/^;/d;/^_r\?data\>/d;' | awk '{print $1}' | \ while read a; do test -z "$a" && continue + case $a in + __IMPORT_DESCRIPTOR*) + continue + ;; + *) + ;; + esac + echo "PUBLIC $a" >> public.inc done -- 2.39.2