Private
Public Access
1
0

All in on DEC-Man name

This commit is contained in:
2026-02-08 22:59:59 +00:00
parent ef3b557c0d
commit 16054bcd23
2 changed files with 6 additions and 6 deletions

View File

@@ -1,18 +1,18 @@
all: game.tap listing.txt
all: decman.tap listing.txt
listing.txt: game.tap
listing.txt: decman.tap
echo "DEC-Man Listing for the 2026 BASIC 10Liner Competition (PUR-80 Category) by mcphail (btl AT mcphail.uk)" > $@
echo "-------------------------------------------------------------------------------------------------------" >> $@
echo "\n (Note - Line 1 has 4 extra control characters before the line of dots for PAPER BLACK and INK GREEN." >> $@
echo " These characters are shown in the listing as € signs.)\n" >> $@
echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
listbasic game.tap | sed 's/" /" €€€€/' >> $@
listbasic $^ | sed 's/" /" €€€€/' >> $@
echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
game.tap: pac.bas
zmakebas -l -i 1 -s 1 -n pac -a 1 -o game.tap pac.bas
decman.tap: pac.bas
zmakebas -l -i 1 -s 1 -n DEC-Man -a 1 -o $@ $^
clean:
rm -f *.tap list.txt
rm -f *.tap listing.txt
.PHONY: all clean

Binary file not shown.