home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1988
/
02
/
bcitip
/
test1.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1987-12-03
|
181 b
|
11 lines
PROGRAM Test;
FUNCTION ByteIn (port: INTEGER): INTEGER; EXTERN;
FUNCTION KeyPressed: BOOLEAN; EXTERN;
BEGIN
REPEAT
WriteLn(ByteIn(201h));
UNTIL KeyPressed
END.