home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / sound / nh10src / testfont.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-15  |  261 b   |  20 lines

  1. #include <dos.h>
  2. #include "nohiss.fnt"
  3.  
  4. main()
  5. {
  6.    _ES = FP_SEG(font);
  7.    _BP = FP_OFF(font);
  8.    _BH=16;
  9.    _BL=0;
  10.    _CX=sizeof(font)/16;
  11.    _DX=128;
  12.    _AX=0x1100;
  13.    asm int 0x10;
  14. // getch();
  15. // _AX=0x1104;
  16. // asm int 0x10;
  17.    return;
  18. }
  19.  
  20.