You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
292 B

#!/usr/bin/env bash
echo "Cleaning.."
rm -rf bin
mkdir bin
6 years ago
echo "Assembling.."
uxnasm nasu.tal bin/nasu.rom
6 years ago
echo "Installing.."
if [ -d "$HOME/roms" ] && [ -e ./bin/nasu.rom ]
then
cp ./bin/nasu.rom $HOME/roms
echo "Installed in $HOME/roms"
fi
echo "Running.."
uxnemu bin/nasu.rom