From 36610e7df8bd7d374a9d206a1a9b94c968de2be7 Mon Sep 17 00:00:00 2001 From: hugova Date: Sun, 9 Mar 2025 20:57:46 +0100 Subject: [PATCH] Made shure that run.sh also create a listing file for debuging and stuff --- .gitignore | 2 +- wip-hugo/run.sh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 83f440e..448c5a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ *~ *.prg *.o - +*.list diff --git a/wip-hugo/run.sh b/wip-hugo/run.sh index df1ccb2..727d971 100755 --- a/wip-hugo/run.sh +++ b/wip-hugo/run.sh @@ -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 & +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 & + sleep 2 rm source.o