home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l440 / 2.ddi / CHAP6 / INSTCMD.SCR < prev    next >
Encoding:
Text File  |  1991-05-14  |  609 b   |  22 lines

  1. ; INSTCMD.SCR
  2. structure cmdline fields
  3.     max (byte)
  4.     text (byte,string,64)
  5.  
  6. intercept 2fh
  7.     function 0aeh
  8.         subfunction 00h
  9.             on_entry
  10.                 if (dx == 0FFFFh)
  11.                     output "AE00" 
  12.                     output (DS:BX->cmdline)
  13.                     output CH       ; FFh first time, 0 second time
  14.                     output ""
  15.         subfunction 01h
  16.             on_entry
  17.                 if (dx == 0FFFFh)
  18.                     output "AE01"
  19.                     output (DS:SI->byte,string,64)
  20.                     output ""
  21.                         
  22.