home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / cpm80 / cpsser.asm < prev    next >
Assembly Source File  |  2020-01-01  |  1KB  |  45 lines

  1. ; CPSSER.ASM
  2. ;       KERMIT - (Celtic for "FREE")
  3. ;
  4. ;       This is the CP/M-80 implementation of the Columbia University
  5. ;       KERMIT file transfer protocol.
  6. ;
  7. ;       Version 4.0
  8. ;
  9. ;       Copyright June 1981,1982,1983,1984
  10. ;       Columbia University
  11. ;
  12. ; Originally written by Bill Catchings of the Columbia University Center for
  13. ; Computing Activities, 612 W. 115th St., New York, NY 10025.
  14. ;
  15. ; Contributions by Frank da Cruz, Daphne Tzoar, Bernie Eiben,
  16. ; Bruce Tanner, Nick Bush, Greg Small, Kimmo Laaksonen, Jeff Damens, and many
  17. ; others. 
  18. ;
  19. ;       This file contains the (system-independent) routines that implement
  20. ;       the SERVER part of the KERMIT protocol.
  21. ;
  22. ; revision history:
  23. ;
  24. ;
  25. ; edit 1: September, 1987.  Created CPSSER.ASM from bits from the two CPSPK?
  26. ;    files.  
  27. ;    The code herein is to allow remote systems to communicate to 
  28. ;    this Kermit running in SERVER mode.  Note that not every server 
  29. ;    command will be supported, mind...
  30. ;
  31. server:    db    'CPSSER.ASM (1)  8-SEP-87$'    ; name, edit number, date
  32.  
  33.  
  34.  
  35. ; Little code to allow some expansion of code without changing
  36. ;  every futher address, only up to the end of this file.
  37. ;   TO BE REMOVED FOR RELEASE!
  38.  
  39. ;    org ($+100h) AND 0FF00H
  40.  
  41.  
  42. IF lasm
  43.     LINK    CPSTT
  44. ENDIF;lasm
  45.