home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / SVGALIB / SVGALIB1.TAR / svgalib / utils / dumpreg.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-22  |  252 b   |  12 lines

  1. #include <vga.h>
  2.  
  3.  
  4. void main(void)
  5. {
  6.     /* We can't call vga_init, because register dumping should work */
  7.     /* from within X, and vga_init will exit in that case. */
  8.     /* vga_init(); */
  9.     vga_dumpregs();
  10.     vga_setmode(TEXT);    /* Hack to unblank screen. */
  11. }
  12.