Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/GZPRO.PAS
2001-11-30 12:14:44 +01:00

23 lines
536 B
Plaintext
Raw Blame History

program GZ_PRO_Reader; { Geb<65>hrenz„hler-Auslese-Software }
uses Crt;
var P: string;
Po: file;
TempVar: string;
begin
ClrScr;
P := 'COM2';
TextColor(Yellow);
TextBackground(Blue);
Write('GZ-PRO Lesesoftware');
TextColor(White);
WriteLn(' (C)1997 by RoboCop IND.');
TextBackground(Black);
TextColor(LightGray);
WriteLn('Port: '+P);
Assign(Po, P);
Reset(Po);
while not Eof(Po) do Read(P, TempVar);
Close(Po);
WriteLn(TempVar);
end.