Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-9E5639F5-B45F-47F1-A25B-54D9B7B8BD58
Visible to Intel only — GUID: GUID-9E5639F5-B45F-47F1-A25B-54D9B7B8BD58
BEEPQQ
Portability Subroutine: Sounds the speaker at the specified frequency for the specified duration in milliseconds.
Module
USE IFPORT
CALL BEEPQQ (frequency,duration)
frequency |
(Input) INTEGER(4). Frequency of the tone in Hz. |
duration |
(Input) INTEGER(4). Length of the beep in milliseconds. |
BEEPQQ does not return until the sound terminates.
Example
USE IFPORT INTEGER(4) frequency, duration frequency = 4000 duration = 1000 CALL BEEPQQ(frequency, duration)