home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / b / krtstd.min < prev    next >
Text File  |  2020-01-01  |  2KB  |  52 lines

  1.     .title    KRTSTD.MIN  SET command list overlay
  2.     .ident    "V03.62"
  3.  
  4. ; /62/    31-May-93  Billy Youdelman
  5.  
  6. ;    Copyright 1985 Change Software, Inc.
  7.  
  8.     .include "IN:KRTMAC.MIN"
  9.     .iif ndf  KRTINC  .error    <; .include for IN:KRTMAC.MIN failed>
  10.     .include "IN:KRTCDF.MIN"
  11.     .iif ndf  KRTCDF  .error     <; .include for IN:KRTCDF.MIN failed>
  12.  
  13.     .psect    $code
  14.     .sbttl    Define the SET commands
  15.  
  16.     $CMGLOB    =    1
  17.  
  18. loaset::mov    #setcmd    ,r0
  19.     return
  20.  
  21. command    setcmd    ,ATTRIBUTES    ,1  ,set$at  ,<On, Off? >
  22. command    setcmd    ,BINARY_TYPE    ,2  ,set$bi  ,<File type: >
  23. command    setcmd    ,BLOCK_CHECK_TYPE,2 ,set$bl  ,<1, 2 or 3? >
  24. command setcmd    ,DEBUG        ,3  ,set$de  ,<Mode: >
  25. command setcmd    ,DEFAULT    ,3  ,c$cwd   ,<Directory: >
  26. command    setcmd    ,DELAY        ,3  ,set$dl  ,<Seconds: >
  27. command    setcmd    ,END_OF_LINE    ,2  ,set$eo  ,<Octal 1-36: >
  28. command    setcmd    ,FILE_TYPE    ,2  ,set$fi  ,<ASCII, Auto, Binary? >
  29. command setcmd    ,HOME        ,2  ,set$ho  ,<Directory: >
  30. command setcmd    ,INCOMPLETE_FILE_DISPOSITION ,1 ,set$in ,<Keep, Discard? >
  31. command setcmd    ,LOGFILE    ,3  ,set$lo
  32. command setcmd    ,LONG_PACKETS    ,3  ,set$lp  ,<On, Off? >
  33. command    setcmd    ,NOATTRIBUTES    ,3  ,st$nat
  34. command setcmd    ,NODEBUG    ,3  ,sd$off
  35. command    setcmd    ,NOLONG_PACKETS    ,3  ,st$nlp
  36. command setcmd    ,NOREPEAT_QUOTING,3 ,set$nrp
  37. command    setcmd    ,PARITY        ,3  ,set$pa  ,<Odd/Even/Mark/Space/None? >
  38. command    setcmd    ,PAUSE        ,3  ,set$ps  ,<Seconds: >
  39. command setcmd    ,PROMPT        ,2  ,set$pr  ,<New prompt: >
  40. command setcmd    ,RECEIVE    ,3  ,set$rc  ,<Option: >
  41. command setcmd    ,REPEAT_QUOTING    ,3  ,set$rp  ,<On, Off? >
  42. command    setcmd    ,RETRY        ,3  ,set$re  ,<Initial, Packet? >
  43. command    setcmd    ,SEND        ,3  ,set$sn  ,<Option: >
  44. command setcmd    ,SERVER        ,3  ,set$sv  ,<Option: >
  45. command setcmd    ,SL        ,2  ,set$sl  ,<On, Off, KED, NOKED: >
  46. command    setcmd    ,START_OF_PACKET,2  ,set$so  ,<Octal 1-36: >
  47. command setcmd    ,TERMINAL    ,2  ,set$tt  ,<Type: >
  48. command setcmd    ,TT:        ,2  ,set$tt  ,<Type: >
  49. command    setcmd
  50.  
  51.     .end
  52.