1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-30 20:28:59 +00:00
SixtyPical/loadngo.sh
2018-02-06 16:35:38 +00:00

16 lines
268 B
Bash
Executable File

#!/bin/sh
SRC=$1
if [ "X$1" = "X" ]; then
echo "Usage: ./loadngo.sh <source.60p>"
exit 1
fi
OUT=/tmp/a-out.prg
bin/sixtypical --traceback --basic-prelude $SRC > $OUT || exit 1
if [ -e vicerc ]; then
x64 -config vicerc $OUT
else
x64 $OUT
fi
rm -f $OUT