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.
|
#!/usr/bin/env bash |
|
|
|
echo "Cleaning.." |
|
rm -rf bin |
|
mkdir bin |
|
|
|
echo "Assembling.." |
|
uxnasm nasu.usm bin/nasu.rom |
|
|
|
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
|
|
|