home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_1 - Perform a simple BIOS request
- by Stephen R. Davis
-
- This program merely serves as an example of a program which
- performs a simple BIOS request: the bootstrap interrupt 0x19.
- Since this interrupt does not go through a complete reset,
- it may or may not be effective. It merely serves as a simple
- but immediately apparent system call.
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- union REGS reg;
-
- main ()
- {
- printf ("\nreboot!\n");
- int86 (0x19, ®, ®);
- }