home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG6_1.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  510 b   |  20 lines

  1. /*Program 6_1 - Perform a simple BIOS request
  2.    by Stephen R. Davis
  3.  
  4.   This program merely serves as an example of a program which
  5.   performs a simple BIOS request: the bootstrap interrupt 0x19.
  6.   Since this interrupt does not go through a complete reset,
  7.   it may or may not be effective.  It merely serves as a simple
  8.   but immediately apparent system call.
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <dos.h>
  13.  
  14. union REGS reg;
  15.  
  16. main ()
  17. {
  18.      printf ("\nreboot!\n");
  19.      int86 (0x19, ®, ®);
  20. }