home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pdp11 / k11gla.xrf < prev    next >
Text File  |  2020-01-01  |  4KB  |  137 lines

  1.  
  2. >>>>> DB1:K11CDF.MAC[2,2] <<<<<
  3.  
  4. $listl    ==    6
  5.  
  6. >>>>> DB1:K11E80.MAC[2,2] <<<<<
  7.  
  8.     nodata    ==    13.        ; no data for terminal read
  9.     detkey    ==    27.        ; i/o to detached tt line
  10. pr$set    ==    . - 2            ; patchable out to a NOP
  11. ..dirp    ==    . - 2            ; patch this via onlpat perhaps
  12. wtmask    ==    0            ; dummy definitions for event flags
  13. ef.co    ==    0            ; used under RSX
  14. ef.ti    ==    0
  15. bit.co    ==    0
  16. bit.ti    ==    0
  17. sf.gmc    ==    2560 
  18. sf.smc    ==    2440 
  19. tc.fdx    ==    64 
  20. tf.ral    ==    10    
  21. tc.tbf    ==    71    
  22. tc.slv    ==    0
  23. tc.abd    ==    0
  24. tc.dlu    ==    0
  25.  
  26. >>>>> DB1:K11M41.MAC[2,2] <<<<<
  27.  
  28.     er.tmo    ==    176        ; for now, timeout
  29.     er.nod    ==    177        ; pseudo error for no data
  30.     nodata    ==    er.nod
  31.  
  32. >>>>> DB1:K11RMS.MAC[2,2] <<<<<
  33.  
  34. sylen    ==    . - sydisk
  35. sydska    ==    sydisk
  36. sydskl    ==    sylen
  37.  
  38. >>>>> DB1:K11INI.MAC[2,2] <<<<<
  39.  
  40.     .sparsz    ==    13        ; 10 parameters to send over
  41.  
  42. >>>>> DB1:K11DAT.MAC[2,2] <<<<<
  43.  
  44. filsiz    ==    128.
  45. rwdata    ==    .
  46. rwend    ==    .
  47. rwsize    ==    rwend-rwdata
  48.  
  49. >>>>> DB1:K11RTE.MAC[2,2] <<<<<
  50.  
  51.     er$cre    ==    -1        ; can't create a file
  52.     er$dev    ==    -2        ; invalid device name
  53.     er$eof    ==    -3        ; end of file
  54.     er$fnf    ==    -4        ; file not found
  55.     er$fnm    ==    -5        ; bad filename
  56.     er$ful    ==    -6        ; device full
  57.     er$nmf    ==    -7        ; no more files found
  58.     er$iop    ==    -10        ; invalid i/o request
  59.     er$sys    ==    -11        ; system error
  60.     er$lby    ==    -12        ; lun open
  61.     er$rer    ==    -13        ; read error
  62.     er$wer    ==    -14        ; write error
  63.     er$prv    ==    -15        ; protection error
  64.     er$rtb    ==    -16        ; record too big
  65.     er$que    ==    -17        ; no que elements
  66.     er$nin    ==    -20        ; no input for .mtget
  67.     er$nat    ==    -21        ; not attached for .mtxxxx
  68.     er$lun    ==    -22        ; non-existant lun for .mtxxxx
  69.     er$bsy    ==    -23        ; device not available
  70.     er$buf    ==    -24        ; invalid buffer for xm exec
  71.     er$sup    ==    -25        ; missing exec feature
  72.     er$map    ==    -26        ; terminal unit not initialized
  73.     er$spe    ==    -27
  74.     er$sy1    ==    -30
  75.     er$sy2    ==    -31
  76.     er$sy3    ==    -32
  77.     er$sy4    ==    -33
  78.     er$vol    ==    -34        ; not an rt11 volume
  79.     er$nop    ==    -35        ; i/o channel not open
  80.     er$wld    ==    -36        ; no wildcard support
  81.     er$xco    ==    -37        ; could not access XC:/XL:
  82.     er$fun    ==    -40        ; invalid .spfun code
  83.     er$hrd    ==    -41        ; hard i/o error
  84.     er$fet    ==    -42        ; no room to load handler
  85.     maxerr    ==    42        ; must be abs(maxerr)
  86.     nodata    ==    er$nin        ; no data available
  87.  
  88.  
  89. >>>>> DB1:K11PAK.MAC[2,2] <<<<<
  90.  
  91.     maxpak    ==    94.        ; maximum packet size-maxsize(checksum)
  92.     mx$try    ==    10        ; number of times to retry packet
  93.     myquote    ==    '#        ; quoting
  94.     mypad    ==    0        ; no padding
  95.     mypchar    ==    0        ; thus no pad character
  96.     myeol    ==    cr        ; end-of-line
  97.     mytime    ==    12        ; time me out after this
  98.     myqbin    ==    '&        ; 8 bit quoting
  99.     defchk    ==    '1
  100.     mychkt    ==    defchk        ; normal checksumming
  101.     myrept    ==    40        ; no repeat counts
  102.     mycapa    ==    capa.a        ; i can receive attributes
  103.     maxtim    ==    60        ; maximum timeout
  104.     mintim    ==    2        ; minimum timeout
  105.     badchk    ==    377        ; psuedo packet type for checksum
  106.     timout    ==    'T&137        ; psuedo packet type for timeout
  107.     defdly    ==    6        ; delay for SENDING to start up
  108.     lun.kb    ==    0        ; assume if channel 0 --> terminal
  109.     lun.in    ==    1        ; channel for input files
  110.     lun.ou    ==    2        ; channel for output files
  111.     lun.lo    ==    3        ; channel for packet and file logging
  112.     lun.tr    ==    3        ; same as lun.log
  113.     lun.ta    ==    4        ; for the TAKE command
  114.     lun.tt    ==    5        ; for RSX, the normal TI: channel
  115.     lun.sr    ==    6        ; channel for $search for RMSv2.0
  116.     lun.ti    ==    7        ; channel number for connected terminal
  117.     lun.co    ==    10        ; used as is lin.ti for remote connect
  118.     lun.as    ==    11        ; used to attach to remote link device
  119.  
  120. >>>>> DB1:K11RT4.MAC[2,2] <<<<<
  121.  
  122.     errbyt    ==    52
  123.     fb$stm    ==    0
  124.     fb$var    ==    0
  125.     fb$cr    ==    0
  126.  
  127.  
  128. >>>>> DB1:K11CMD.MAC[2,2] <<<<<
  129.  
  130.     baselev    ==    2        ; baseline level
  131.     edit    ==    23.        ; edit (independent of base_level)
  132.     release    ==    'T&137        ; T for test, V for release
  133.     cc$max    ==    2
  134.     cmd$ab    ==    -3
  135.     cmd$ex    ==    -2
  136.     cmd$bad    ==    -1
  137.