From 15a0917bb4b66bb64626e4cfa7d81bff9a873bdf Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Mon, 18 Apr 2022 20:31:11 -0500 Subject: [PATCH] Change kernel to use none target I forgot that the CI still uses the stock cc65 which doesn't support my target. The kernel doesn't really need this target though, only the user programs. --- sw/kernel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/kernel/Makefile b/sw/kernel/Makefile index d733175..627fb45 100644 --- a/sw/kernel/Makefile +++ b/sw/kernel/Makefile @@ -1,5 +1,5 @@ CC=cl65 -CFLAGS=-T -t super6502 -I. --cpu "65C02" +CFLAGS=-T -t none -I. --cpu "65C02" test: CFLAGS=-T -t sim65c02 -I. LDFLAGS=-C link.ld -m $(NAME).map SIM=sim65