From: Jakob Haufe Date: Sat, 22 Sep 2018 18:22:53 +0000 (+0200) Subject: Do not optimize X-Git-Url: https://git.sur5r.net/?p=rgb2r-2017;a=commitdiff_plain;h=c9d0f06c516ea83b028832b04ce5bc20c473dd14 Do not optimize Current cc65 has changed optimization flags and it's unnecessary for this code. --- 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 $@