2023-11-27 16:43:11 -05:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
ID="tgachr"
|
|
|
|
ASM="uxncli $HOME/roms/drifblim.rom"
|
2023-11-27 18:27:49 -05:00
|
|
|
EMU="uxnemu"
|
2023-11-27 16:43:11 -05:00
|
|
|
LIN="uxncli $HOME/roms/uxnlin.rom"
|
|
|
|
SRC="${ID}.tal"
|
|
|
|
DST="${ID}.rom"
|
|
|
|
CPY="$HOME/roms"
|
2023-11-27 18:27:49 -05:00
|
|
|
ARG="pict3.tga"
|
2023-11-27 16:43:11 -05:00
|
|
|
|
|
|
|
if [[ "$*" == *"--lint"* ]]
|
|
|
|
then
|
|
|
|
$LIN $SRC
|
|
|
|
fi
|
|
|
|
|
|
|
|
$ASM $SRC $DST
|
|
|
|
|
|
|
|
if [[ "$*" == *"--save"* ]]
|
|
|
|
then
|
|
|
|
cp $DST $CPY
|
|
|
|
fi
|
|
|
|
|
|
|
|
$EMU $DST $ARG
|
|
|
|
|