home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programming
/
powerprogramming1994.iso
/
progtool
/
pibterm
/
pibt41s4.arc
/
SOUNDBEL.MOD
< prev
next >
Wrap
Text File
|
1988-01-11
|
2KB
|
31 lines
(*----------------------------------------------------------------------*)
(* Sound_Bell --- Sound terminal bell *)
(*----------------------------------------------------------------------*)
PROCEDURE Sound_Bell;
(*----------------------------------------------------------------------*)
(* *)
(* Procedure: Sound_Bell *)
(* *)
(* Purpose: Sounds terminal bell *)
(* *)
(* Calling Sequence: *)
(* *)
(* Sound_Bell; *)
(* *)
(* Remarks: *)
(* *)
(* This routine replaces the usual WRITE( ^G ) sequence which *)
(* causes too many dropped characters. *)
(* *)
(*----------------------------------------------------------------------*)
BEGIN (* Sound_Bell *)
Sound( 900 );
Delay( 40 );
NoSound;
END (* Sound_Bell *);