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

  1.         .
  2.         .
  3.         .
  4.         mov     ah,67h          ; Function 67H = set handle count.
  5.         mov     bx,30           ; Maximum number of handles.
  6.         int     21h             ; Transfer to MS-DOS.
  7.         jc      error           ; Jump if function failed.
  8.         .
  9.         .
  10.         .
  11.