From 65eb335d5aaf328ae5a635606790362364f562e1 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 30 Oct 2000 00:19:39 +0000 Subject: [PATCH] Initial version. committer: mfx 972865179 +0000 --- src/stub/scripts/asl_68k.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/stub/scripts/asl_68k.sh diff --git a/src/stub/scripts/asl_68k.sh b/src/stub/scripts/asl_68k.sh new file mode 100644 index 00000000..14a63e56 --- /dev/null +++ b/src/stub/scripts/asl_68k.sh @@ -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 +