version 7.5

This commit is contained in:
Irmen de Jong 2021-12-10 20:18:17 +01:00
parent 75ea453bf4
commit 35998142fe
3 changed files with 4 additions and 26 deletions

View File

@ -1 +1 @@
7.5-dev
7.5

View File

@ -1,7 +1,7 @@
TODO
====
For next compiler release (7.5)
For next compiler release (7.6)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...

View File

@ -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++
}
}