From d90b94f4b1bc6cb05c9e727ce2ce09fd0f2a3233 Mon Sep 17 00:00:00 2001 From: Terence Boldt Date: Sat, 31 Dec 2022 12:34:23 -0500 Subject: [PATCH] Fix compare for build --- Apple2/compare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Apple2/compare.sh b/Apple2/compare.sh index 5588001..9bf7b6c 100755 --- a/Apple2/compare.sh +++ b/Apple2/compare.sh @@ -50,8 +50,8 @@ ca65 RPi.Command.asm -o RPi.Command.o --listing RPi.Command.lst.new || exit 1 ld65 RPi.Command.o -o RPi.Command.bin.new -C ../.cicd/none.cfg || exit 1 rm ./*.o -diff RPi.Command.bin RPi.Command.bin.new || exit 1 -diff AT28C64B.bin AT28C64B.bin.new || exit 1 -diff Shell.bin Shell.bin.new || exit 1 +diff ../RaspberryPi/driveimage/RPi.Command.bin RPi.Command.bin.new || exit 1 +diff ../RaspberryPi/driveimage/AT28C64B.bin AT28C64B.bin.new || exit 1 +diff ../RaspberryPi/driveimage/Shell.bin Shell.bin.new || exit 1 rm ./*.new