Start emulator from bin
This commit is contained in:
parent
ef13809e08
commit
e9f0585e0b
8
build.sh
8
build.sh
|
@ -4,7 +4,7 @@ echo "Cleaning.."
|
||||||
rm -f ./bin/uxnasm
|
rm -f ./bin/uxnasm
|
||||||
rm -f ./bin/uxnemu
|
rm -f ./bin/uxnemu
|
||||||
rm -f ./bin/uxncli
|
rm -f ./bin/uxncli
|
||||||
rm -f ./boot.rom
|
rm -f ./bin/boot.rom
|
||||||
rm -f ./bin/asma.rom
|
rm -f ./bin/asma.rom
|
||||||
|
|
||||||
# When clang-format is present
|
# When clang-format is present
|
||||||
|
@ -62,7 +62,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Assembling(boot).."
|
echo "Assembling(boot).."
|
||||||
./bin/uxnasm projects/software/boot.tal boot.rom
|
./bin/uxnasm projects/software/boot.tal bin/boot.rom
|
||||||
echo "Assembling(asma).."
|
echo "Assembling(asma).."
|
||||||
./bin/uxnasm projects/software/asma.tal bin/asma.rom
|
./bin/uxnasm projects/software/asma.tal bin/asma.rom
|
||||||
|
|
||||||
|
@ -72,6 +72,8 @@ echo "Assembling(piano).."
|
||||||
bin/uxncli bin/asma.rom projects/examples/demos/piano.tal bin/piano.rom 2> bin/piano.log
|
bin/uxncli bin/asma.rom projects/examples/demos/piano.tal bin/piano.rom 2> bin/piano.log
|
||||||
|
|
||||||
echo "Running.."
|
echo "Running.."
|
||||||
./bin/uxnemu bin/piano.rom
|
cd bin
|
||||||
|
./uxnemu piano.rom
|
||||||
|
|
||||||
echo "Done."
|
echo "Done."
|
||||||
|
cd ..
|
||||||
|
|
Loading…
Reference in New Issue