From 35998142fe5b51f2fdda22e066918e856db4305d Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Fri, 10 Dec 2021 20:18:17 +0100 Subject: [PATCH] version 7.5 --- compiler/res/version.txt | 2 +- docs/source/todo.rst | 2 +- examples/test.p8 | 26 ++------------------------ 3 files changed, 4 insertions(+), 26 deletions(-) diff --git a/compiler/res/version.txt b/compiler/res/version.txt index 906522e09..c382960e3 100644 --- a/compiler/res/version.txt +++ b/compiler/res/version.txt @@ -1 +1 @@ -7.5-dev +7.5 diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 18a337e15..af5956e9b 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -1,7 +1,7 @@ TODO ==== -For next compiler release (7.5) +For next compiler release (7.6) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ... diff --git a/examples/test.p8 b/examples/test.p8 index b4ed85812..1af4a1eb2 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -3,31 +3,9 @@ main { sub start() { - ubyte @zp xx - for xx in 0 to 10 { - txt.print_ub(xx) - txt.spc() - } - txt.nl() - - for cx16.r0L in 0 to 10 { - txt.print_ub(cx16.r0L) - txt.spc() - } - txt.nl() - - for main.derp.xx in 0 to 10 { - txt.print_ub(main.derp.xx) - txt.spc() - } - - derp() - txt.nl() - } - - sub derp() { - ubyte xx + ubyte @shared xx = @(cx16.r5) xx++ + } }