diff --git a/examples/pgztest/build.sh b/examples/pgztest/build.sh index 5db0eab..9488e4a 100755 --- a/examples/pgztest/build.sh +++ b/examples/pgztest/build.sh @@ -32,7 +32,7 @@ START=0x2000 echo "__f256_start = ${START};" > ${SETTINGS} -CLANG="mos-f256k-clang -I${F256}/include -I${F256}/f256lib -Os" +CLANG="mos-f256k-clang -I${F256}/include -I${F256}/f256lib -Os -fno-inline" ${CLANG} -c ${F256}/f256lib/f256.c ${CLANG} -c pgztest.c diff --git a/examples/pgztest/pgztest.c b/examples/pgztest/pgztest.c index c0f6f18..b2231c0 100644 --- a/examples/pgztest/pgztest.c +++ b/examples/pgztest/pgztest.c @@ -99,7 +99,8 @@ void text(void) { int main(void) { f256Init(); - text(); - bitmap(); + //text(); + //bitmap(); + bitmapReset(); // BOOM! return 0; }