home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
bbs
/
pibterm
/
pibt3sp3
/
pibuplob.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-09-11
|
862b
|
35 lines
BEGIN (* PibUpLoad *)
(* Get protocol for upload *)
IF Transfer_Protocol = None THEN
Transfer_Protocol := Get_Upload_Protocol;
(* Perform transfer *)
CASE Transfer_Protocol OF
Ascii : Send_Ascii_File;
Modem7_Chk,
Ymodem_Batch,
Ymodem,
Xmodem_CRC,
Telink,
Modem7_CRC,
Xmodem_Chk : Do_Xmodem_Upload( Transfer_Protocol );
Kermit : Send_Kermit_File;
ELSE ;
END (* CASE *);
(* Indicate end of transfer *)
IF ( NOT Silent_Mode ) AND ( NOT ( Transfer_Protocol = None ) ) THEN
FOR I := 1 TO Transfer_Bells DO
BEGIN
WRITE( CHR( BELL ) );
DELAY( 250 );
END;
END (* PibUpLoad *);
ə