1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Initial version.

committer: mfx <mfx> 972865179 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2000-10-30 00:19:39 +00:00
parent da89dfa63f
commit 65eb335d5a

View File

@ -0,0 +1,16 @@
#!/bin/sh
set -e
# wrapper for the ASL cross-assembler
# http://john.ccac.rwth-aachen.de:8000/as/
file="$1"
perl -p -i -e '
s,\x27,",g if m,^\s*dc,;
' "$file"
asl -cpu 68000 "$file"
exit 0