From: matze Date: Sat, 28 Jul 2007 22:24:18 +0000 (+0000) Subject: commite leere disk images, weil ich nicht herausfinden kann, wie die korrekte syntax... X-Git-Tag: rgb2rv6~79 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fd6ec6b93d4a4c84922490a279fde58679aeccfa;p=c128-kasse commite leere disk images, weil ich nicht herausfinden kann, wie die korrekte syntax zum erstellen mit c1541 ist und ich jetzt mit vice leere geklickt habe git-svn-id: https://shell.noname-ev.de/svn/kasse/c128@30 af93e077-1a23-4f1e-9cbe-9382a9d578f5 --- diff --git a/Makefile b/Makefile index e0cbcd5..a50fe7a 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,26 @@ all: config.o kasse.o general.o credit_manager.o cl65 -t c128 *.o -o kasse +package: all + c1541 -zcreate kasse.d64 kasse || exit 0 + c1541 -attach kasse.d64 -delete state || exit 0 + c1541 -attach kasse.d64 -delete items || exit 0 + c1541 -attach kasse.d64 -delete kasse || exit 0 + c1541 -attach kasse.d64 -write state || exit 0 + c1541 -attach kasse.d64 -write items || exit 0 + c1541 -attach kasse.d64 -write kasse || exit 0 + test: config.o test.o cl65 -t c128 config.o test.o -o test +test-package: test + c1541 -attach test.d64 -delete state || exit 0 + c1541 -attach test.d64 -delete items || exit 0 + c1541 -attach test.d64 -delete test || exit 0 + c1541 -attach test.d64 -write state || exit 0 + c1541 -attach test.d64 -write items || exit 0 + c1541 -attach test.d64 -write test || exit 0 + clean: - rm -rf *.o *.s + rm -rf *.o *.s kasse test diff --git a/kasse.d64 b/kasse.d64 new file mode 100644 index 0000000..2e3a4a2 Binary files /dev/null and b/kasse.d64 differ diff --git a/test.d64 b/test.d64 new file mode 100644 index 0000000..4243532 Binary files /dev/null and b/test.d64 differ