Skip to content

Commit

Permalink
Update demo programs, disk image
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Dec 17, 2024
1 parent 429b9d0 commit a1734d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions TEKLINES.BAS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
130 FOR I = 1 TO 10000: NEXT
140 PRINT CSI$+"?38l"
150 END
1000 REM calculate coordinates for x,y
1010 REM returns them in xy$
1000 REM calculate coordinate string for (X,Y)
1010 REM returns them in XY$
1020 XY$=CHR$((Y\32) OR 32) + CHR$((Y MOD 32) OR 96) + CHR$((X\32) OR 32) + CHR$((X MOD 32) OR 64)
1030 RETURN
11 changes: 5 additions & 6 deletions app.dsk
Original file line number Diff line number Diff line change
Expand Up @@ -14528,10 +14528,9 @@ Owned b
180 END
1000 REM move-to (X, Y)
1010 GOSUB 2000
10���������OR 96) + CHR$((X\32) OR 32) + CHR$((X MOD 32) OR 64)
10���������MOD 32) OR 96) + CHR$((X\32) OR 32) + CHR$((X MOD 32) OR 64)
1030 RETURN
 them in xy$
1020 XY$=CHR$((Y\32) OR 32) + CHR$((Y MOD 32) ���������(Y\32) OR 32) + CHR$((Y MOD 32) OR 96) + CHR$((X\32) OR 32) + CHR$((X MOD 32) OR 64)
���������(Y\32) OR 32) + CHR$((Y MOD 32) OR 96) + CHR$((X\32) OR 32) + CHR$((X MOD 32) OR 64)
2030 RETURN
 them in XY$
2020 XY$=CHR$(�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������10 REM Play with Tektronix graphics
Expand All @@ -14550,9 +14549,9 @@ Owned b
140 REM Pause for a short time
150���������"
150 END
1000 REM calculate coordinates for x,y
1010 REM returns them in xy$
1020 XY$=CHR$((Y\32) OR 32) + CHR$((Y MOD 32) ���������20 PRINT GS$+XY$+US$;
1000 REM calculate coordinate string for (X,Y)
1010 REM returns them in XY$
1020 XY$=CHR$((Y\32) OR 32) + CHR$((Y ���������20 PRINT GS$+XY$+US$;
1030 RETURN
2000 REM calculate coordinate string for (X,Y)
2010 REM returns them in XY$
Expand Down

0 comments on commit a1734d1

Please sign in to comment.