home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap14 / blank.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-07  |  337 b   |  14 lines

  1. /* blank.c -- blanks MDA screen                        */
  2. /* program list -- blank.c (outp() not in core lib)    */
  3.  
  4. #include <conio.h>
  5. #define CONTROLREG 0x3B8 /* control register MDA */
  6. #define DEFAULTSET 0x29
  7. #define VIDEOOFF 0x21
  8. main()
  9. {
  10.     outp(CONTROLREG, VIDEOOFF);
  11.     getch();
  12.     outp(CONTROLREG, DEFAULTSET);
  13. }
  14.