From c9d0f06c516ea83b028832b04ce5bc20c473dd14 Mon Sep 17 00:00:00 2001 From: Jakob Haufe Date: Sat, 22 Sep 2018 20:22:53 +0200 Subject: [PATCH] Do not optimize Current cc65 has changed optimization flags and it's unnecessary for this code. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e008797..f95267c 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ diskbench.d71: diskbench c1541 -attach diskbench.d71 -write data data,s %.s: %.c - ${CC} ${CFLAGS} -O1 $< -o $@ + ${CC} ${CFLAGS} $< -o $@ %.o: %.s ${AS} ${CFLAGS} $< -o $@ -- 2.39.2