Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Int 21h Function 44h Subfunction 07h
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Interrupt:   21h     Function:   44h     Subfunction:   07h
 
  Title:       IOCTL: Check Output Status
 
  Description:
 
     Returns a code indicating whether the device associated with a
     handle is ready for output. When used with a handle for a file,
     this function always returns a ready status, even if the disk is
     full or no disk is in the drive.
 
     Input           Output
 
     AH = 44h        If function successful
     AL = 07h          Carry flag: clear
     BX = Handle     And for a device
                       AL = 00h (if device not ready)
                          = FFh (if device ready)
                     Or for a file
                       AL = FFh
 
                     If function unsuccessful
                       Carry flag: set
                       AX = Error code (01h, 05h, 06h,or 0Dh)
                       See: Error codes
                                    -♦-