home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
c
/
cc01.arc
/
BEEP.C
< prev
next >
Wrap
Text File
|
1984-10-18
|
190b
|
16 lines
/* beep2 */
/* a longer beep */
#define LIMIT 10000
main() {
int store;
int count = 0;
store = inp(97);
outp(97, 79);
while (count++ < LIMIT)
;
outp(97, store);
}