From 63897b552fc0d0a2544a547318017485ed220c67 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 12 Dec 2023 20:03:06 +0100 Subject: Implemented day 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Note that only part 1 has been implemented. The reasoning is on the file header. Moreover, we are not printing 24-bit results yet because that would entail modifying the somewhat terrifying vendor code on `vendor/bcd16.s`. Since this will be a recurring theme, I guess that I will have to come up with a solution sooner or later. Signed-off-by: Miquel Sabaté Solà --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0784337..be38f1a 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CCOPTS += -g -Ln out/labels.txt endif QUIET = @echo ' ' CC65 $@; -SOURCES = $(shell find src/ -type f -name '*.s' -printf "%f\n") +SOURCES = $(shell find src/ -type f -name '*.s' -printf "%f\n" | sort) ROMS = $(SOURCES:%.s=out/%.nes) .PHONY: all -- cgit v1.2.3