home *** CD-ROM | disk | FTP | other *** search
- {->>>>Deedle<<<<-----------------------------------------------}
- { This routine makes a sound not unlike certain electronic }
- { telephone ringers you hear in lawyers' offices. The number }
- { of "deedles" is given by the value passed in Deedles. }
- {--------------------------------------------------------------}
-
- Procedure Deedle(Deedles : Integer);
-
- Var I : Integer;
-
- Begin
- For I := 1 to Deedles Do
- Begin
- Sound(800); Delay(50); Sound(500); Delay(50)
- End;
- NoSound
- End;