Skip to content

Commit

Permalink
refactor build script, long listing of files on disk
Browse files Browse the repository at this point in the history
  • Loading branch information
davervw committed Apr 17, 2024
1 parent 4aba467 commit 4945c64
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
export ACME=${USERPROFILE}/Downloads/acme0.97win/acme
export VICE=${USERPROFILE}/Downloads/GTK3VICE-3.8-win64/bin
mkdir build 2>/dev/null
${ACME}/acme -f cbm -o build/ch20edit.prg -l build/ch20edit.lbl ch20edit.asm
[ $? -eq 0 ] && ${VICE}/c1541 ch20edit.d64 -attach ch20edit.d64 8 -delete ch20edit.prg -write build/ch20edit.prg
[ $? -eq 0 ] && rm d64_files/*
[ $? -eq 0 ] && ${VICE}/c1541 ch20edit.d64 -attach ch20edit.d64 8 -cd d64_files -extract
[ $? -eq 0 ] && ${VICE}/xvic -moncommands build/ch20edit.lbl -autostart ch20edit.d64 >/dev/null 2>&1 &
${ACME}/acme -f cbm -o build/ch20edit.prg -l build/ch20edit.lbl ch20edit.asm \
&& ${VICE}/c1541 ch20edit.d64 -attach ch20edit.d64 8 -delete ch20edit.prg -write build/ch20edit.prg \
&& rm d64_files/* \
&& ${VICE}/c1541 ch20edit.d64 -attach ch20edit.d64 8 -cd d64_files -extract \
&& ls -l d64_files \
&& ${VICE}/xvic -moncommands build/ch20edit.lbl -autostart ch20edit.d64 >/dev/null 2>&1 &

0 comments on commit 4945c64

Please sign in to comment.