home *** CD-ROM | disk | FTP | other *** search
- /*Program 9_3 -- Define a new "BIOS" function for Turbo Pascal
- by Stephen R. Davis, 1987
-
- Using more or less the same approach as we took with the other
- interrupt programs, we can assign any function we desire to
- a new interrupt. This function defines a new BIOS routine for
- beeping the speaker -- included are 2 subfunctions, which we
- invoke exactly like the BIOS subfunctions.
-
- This function can be invoked from any computer language which
- can perform software interrupts. This is one way of "linking"
- Turbo C with other computer languages.
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- #ifndef __TINY__
- #error Should use TINY compilation model
- #endif
-
- /*first the prototyping definitions*/
-
- void interrupt beep (unsigned, unsigned, unsigned, unsigned,
- unsigned, unsigned, unsigned, unsigned,
- unsigned);
-
- /*define our data structures*/
-
- unsigned freq, duration, prev, pclock, i;
- #define clock ((volatile unsigned far *)0x0040006c)
-
- /*Beep - beep the speaker. We define 2 subfunctions according
- to the value in AX:
- 0 - set the frequency, DX - contains the loop count
- 1 - beep. Duration in clock ticks is in DX*/
- void interrupt beep (bp, di, si, ds, es,
- dx, cx, bx, ax)
- unsigned ax, bx, cx, dx, si, di, bp, ds, es;
- {
- enable (); /*re-enable interrupts*/
- switch (ax) {
- case 0: /*set the frequency (in arbitrary units)*/
- freq = dx;
- break;
- case 1: {/*beep the speaker for 'dx' clock ticks*/
- prev = inportb (0x61);
- duration = dx;
- while (duration--) {
- pclock = *clock;
- while (pclock == *clock) {
- /*go ahead and beep a cycle*/
- outportb (0x61, prev & 0xfc);
- for (i = 0; i < freq; i++);
- outportb (0x61, prev | 0x02);
- for (i = 0; i < freq; i++);
- }
- }
- outportb (0x61, prev);
- }
- }
- }
-
-
- /*Main - install the above routine.*/
- main ()
- {
- setvect (0x48, beep);
- keep (0, 0x1000);
- }