Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- TASM 2.x / MASM 6.x Assembly Language - <b>function 09h (9) print string</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Function 09h (9)         Print String

    Outputs a string of characters to the standard output device. Checks
    for Ctrl-Break (Ctrl-C).

       On entry:      AH         09h
                      DS:DX      Pointer to character string

       Returns:       Nothing

  --------------------------------------------------------------------------

    The function outputs a string to the standard output device, checking
    for Ctrl-Break and Ctrl-C.

       Notes:         The string must be terminated with a $ (dollar-
                      sign); the dollar-sign is not displayed. This
                      function is therefore not suitable for displaying
                      strings that include the dollar-sign character. All
                      other characters, including control characters, are
                      displayed.

                      If a Ctrl-Break or Ctrl-C is detected, an INT 23h is
                      generated following output.

                      To output a single character, see Function 02h.

See Also: 02h 06h

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson