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.
Multiplex Interrupt
 Detail                                     Up Contents Index Back
──────────────────────────────────────────────────────────────────────────────
 
  Interrupt:   2Fh
 
  Title:       Multiplex Interrupt
 
  See also:    Terminate and Stay Resident
 
  Description:
 
     Allows multiple resident processes to communicate with other
     processes through a single interrupt. A caller initiates
     communication by invoking Int 2Fh with a unique identity number in
     AH. Each resident process receives the call through its Int 2Fh
     handler. A handler that does not recognize its identity number
     passes control to the previous handler until control reaches the
     intended recipient.
 
     Function     Description
 
     01h          Print Spooler
     06h          Resident ASSIGN command
     10h          Resident SHARE command
     B7h          Resident APPEND command
 
     Input                                Output
 
     AH = Identity number                 AL = 0FFh if input AL = 0
     AL = Function number                 Otherwise, depends on handler
                                    -♦-