mirror of
https://github.com/fachat/xa65.git
synced 2025-03-21 08:29:41 +00:00
34 lines
471 B
Bash
Executable File
34 lines
471 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run a test script
|
|
|
|
#THISDIR=`dirname $0`
|
|
THISDIR=`pwd`
|
|
|
|
#echo "0=$0"
|
|
#echo "THISDIR=$THISDIR"
|
|
|
|
declare -A opts
|
|
#opts=([816.asm]="-w")
|
|
opts[comcom2.asm]="-M"
|
|
opts[scomcom.asm]="-M"
|
|
|
|
#ASMFLAGS=-v
|
|
ASMFLAGS=
|
|
|
|
# exclude filter from *.asm if no explicit file is given
|
|
EXCLUDE=
|
|
|
|
# test files used
|
|
TESTFILES=""
|
|
|
|
# files to compare afterwards, against <file>-<script>
|
|
COMPAREFILES=a.out
|
|
|
|
XA=$THISDIR/../../xa
|
|
|
|
##########################
|
|
# actual code
|
|
. ../func.sh
|
|
|