home *** CD-ROM | disk | FTP | other *** search
- {Prg9_3 - Invoke the Turbo C Interrupt Beep Routine
- by Stephen R. Davis, 1987
-
- Install the Turbo C beep routine first. Then execute this
- program. This shows that any language capable of executing
- interrupt routines can be interfaced with Turbo C. This is
- similar to the interface to BIOS routines}
-
- program Prg9_3;
-
- type
- registers = record
- case Integer of
- 1 : (ax, bx, cx, dx, bp, si,
- di, ds, es, flags : Integer);
- 2 : (al, ah, bl, bh, cl, ch,
- dl, dh : Byte);
- end;
-
- var
- freq, duration : Integer;
- regs : registers;
-
- begin
- WriteLn ('This is a simple test of invoking a Turbo C');
- WriteLn ('interrupt routine from another language.');
- WriteLn;
- WriteLn ('Enter any frequency and duration desired.');
- WriteLn ('Turbo Pascal will beep using the Turbo C routine.');
- WriteLn ('For example: 20 10');
- WriteLn ('(units of freq are loop counts -- units of duration');
- WriteLn (' are clock ticks -- a duration of zero terminates)');
- WriteLn;
-
- repeat
- Write ('Enter freq and duration:');
- ReadLn (freq, duration);
- WriteLn;
- If duration >= 18*10 then {reduce durations of...}
- duration := 18; {...> 10 secs to 1 sec}
-
- regs.ax := 0; {set the frequency}
- regs.dx := freq;
- intr ($48, regs);
-
- regs.ax := 1; {now beep duration}
- regs.dx := duration;
- intr ($48, regs)
-
- until (duration = 0);
- WriteLn;
- WriteLn ('Thats all')
- end.
-
- end.