-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #412 from paulscottrobson/decimals
Decimal tokenisation fix
- Loading branch information
Showing
4 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1 @@ | ||
0 ' library line | ||
0 ' another library line | ||
rect 10,10 solid ink 2 to 100,100 to 110,120 to 130,440 to 140,500 | ||
edit | ||
cls | ||
for i = 0 to 100 | ||
for j = 0 to 100 | ||
doke $FF04,i:doke $FF06,j:poke $FF08,c | ||
call send.message(5,39) | ||
c = (c + 1) & $FF | ||
next | ||
next | ||
end | ||
|
||
proc send.message(g,f) | ||
while peek($FF00):wend | ||
poke $FF01,f:poke $FF00,g | ||
while peek($FF00):wend | ||
endproc | ||
10 print 1.2 |