From f1dd33925fd63791547b186feb76768ecbb53939 Mon Sep 17 00:00:00 2001 From: pjht Date: Sun, 9 Oct 2022 12:01:55 -0500 Subject: [PATCH] Tell assembler the correct target architecture --- Tuprules.tup | 1 + 1 file changed, 1 insertion(+) diff --git a/Tuprules.tup b/Tuprules.tup index 6eb371b..a67b279 100644 --- a/Tuprules.tup +++ b/Tuprules.tup @@ -1,5 +1,6 @@ .gitignore LDFLAGS = -z max-page-size=1 +ASFLAGS = -m68010 !as = |> m68k-elf-as $(ASFLAGS) -o %o %f |> %B.o !ld = |> m68k-elf-ld $(LDFLAGS) -o %o %f |>