notaz.gp2x.de
/
ia32rtools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfd2347
)
more complete disassembly
author
notaz
<notasas@gmail.com>
Sun, 17 Nov 2013 00:07:32 +0000
(
02:07
+0200)
committer
notaz
<notasas@gmail.com>
Sun, 17 Nov 2013 00:07:32 +0000
(
02:07
+0200)
run_mkpubinc.sh
patch
|
blob
|
blame
|
history
diff --git
a/run_mkpubinc.sh
b/run_mkpubinc.sh
index
669a17b
..
a3d085f
100755
(executable)
--- 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