From: notaz Date: Sun, 17 Nov 2013 00:07:32 +0000 (+0200) Subject: more complete disassembly X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=ia32rtools.git;a=commitdiff_plain;h=7b64f7cd01d7306460b71a63ab78842545c5224f more complete disassembly --- 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