home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_03 / 1n03068a < prev    next >
Text File  |  1990-07-06  |  198b  |  8 lines

  1.  
  2.     mov    ah,2        ; select BIOS Set Cursor Position service
  3.     mov    bh,0        ; work with video page 0
  4.     mov    dh,4        ; goto line 5
  5.     mov    dl,9        ;      column 10
  6.     int    16          ; call the BIOS via interrupt
  7.  
  8.