home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC012.C < prev    next >
Text File  |  1988-05-15  |  661b  |  18 lines

  1.  
  2. /************************************************************************/
  3. /* Test low level example: Use Video_BIOS library function to use BIOS  */
  4. /************************************************************************/
  5.  
  6. test_video_BIOS()
  7.         {
  8.         int     i;
  9.         static char     string[] = "Print string using BIOS function E";
  10.  
  11.         /* Move cursor to row Ahex column 20hex using function 2        */
  12.         video_BIOS(0x0200, 0, 0, 0x0A20);
  13.  
  14.         /* Print a string at current cursor position using function E   */
  15.         for (i = 0; string[i] != NULL; i++)
  16.                 video_BIOS(0x0E00 + string[i]);
  17.         }
  18.