Table des matières

INT 0x21 - 0x09 - print String

This function :

Request/Call:

reg value descr
AH 0x9
DS:DX pointer to string ending with '$'

Return:

Nothing

Notes & Comments

  • outputs character string to STDOUT up to “$”
  • backspace is treated as non-destructive
  • if Ctrl-Break is detected, INT 23 is executed

Back