home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / dos_ency / 5 / fxn02h.asm next >
Encoding:
Assembly Source File  |  1988-08-11  |  183 b   |  4 lines

  1.         mov     ah,02h          ; function 02H = display character
  2.         mov     dl,'*'          ; DL = character to display
  3.         int     21h             ; transfer to MS-DOS
  4.