Skip to content

Commit

Permalink
version 7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Dec 10, 2021
1 parent 75ea453 commit 3599814
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 26 deletions.
2 changes: 1 addition & 1 deletion compiler/res/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.5-dev
7.5
2 changes: 1 addition & 1 deletion docs/source/todo.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TODO
====

For next compiler release (7.5)
For next compiler release (7.6)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...

Expand Down
26 changes: 2 additions & 24 deletions examples/test.p8
Original file line number Diff line number Diff line change
Expand Up @@ -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++

}
}

0 comments on commit 3599814

Please sign in to comment.