From 57f8dbde9c0c777601706d30a618d41226fdb35e Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sat, 1 Mar 2025 19:31:27 +0100 Subject: [PATCH] symbols: Changed default symbol format --- .gitignore | 1 + makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d72032f..d89d225 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ testrg.lst *.sav *.patch +*.sym diff --git a/makefile b/makefile index a25fdd0..7172490 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ AS=ulas FLAGS=-D DEBUG bin: - $(AS) $(FLAGS) -o $(NAME).gb -l ${NAME}.lst -s $(NAME).mlb -S mlb -I ./src -I ./tiles -I ./maps src/main.s + $(AS) $(FLAGS) -o $(NAME).gb -l ${NAME}.lst -s $(NAME).sym -S sym -I ./src -I ./tiles -I ./maps src/main.s test: $(AS) $(FLAGS) -o $(TEST_NAME).gb -l ${TEST_NAME}.lst -s $(TEST_NAME).mlb -S mlb -I ./src -I ./tiles src/main.s -- 2.30.2