home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
turbobas
/
draw.arc
/
SCALER.BAS
< prev
Wrap
BASIC Source File
|
1987-10-14
|
476b
|
11 lines
SCREEN 9 'SCREEN 2 for CGA
FOR I% = 2 TO 74 STEP 8
DRAW "BM 320,175" 'move to screen center
'change 175 to 100 for CGA
DRAW "S =" + VARPTR$(I%) 'set scale factor
DRAW "BM +7,5" 'move to corner where next
'square starts
DRAW "U10 L14 D10 R14" 'draw square
DELAY 0.5 'wait a bit
NEXT I%