Made shure that run.sh also create a listing file for debuging and stuff

This commit is contained in:
hugova 2025-03-09 20:57:46 +01:00
parent 09b8a33e09
commit 36610e7df8
2 changed files with 5 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
*~
*.prg
*.o
*.list

View file

@ -1,4 +1,7 @@
# !/bin/bash
killall x64sc ; cl65 -o file.prg -u __EXEHDR__ -t c64 -C c64-asm.cfg source.s && nohup flatpak run net.sf.VICE -windowypos 0 -windowxpos 960 -windowwidth 945 -windowheight 720 file.prg </dev/null &>/dev/null &
killall x64sc
cl65 -o file.prg -u __EXEHDR__ -t c64 -C c64-asm.cfg -l file.list source.s \
&& nohup flatpak run net.sf.VICE -windowypos 0 -windowxpos 960 -windowwidth 945 -windowheight 720 file.prg </dev/null &>/dev/null &
sleep 2
rm source.o