home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progbas
/
ascsu205.arj
/
DARKSCRN.ASI
< prev
next >
Wrap
Text File
|
1991-11-11
|
400b
|
24 lines
start:
rem This program blanks your screen. It's designed to be used from the DOS
rem prompt; if your DOS screen color is other than black, it won't work too
rem well.
rem It requires approximately 64K of RAM.
rem By Matt Roberts
rem 3 Cedar St., # 8
rem Montpelier, Vt 05602-3006
rem (802)223-2553
cls
locate 81,81
loop:
a$=inkey$
if a$="" then loop:
finish:
cls
end