home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol175 / modem.a86 < prev    next >
Encoding:
Text File  |  1984-07-15  |  2.2 KB  |  85 lines

  1. ;    MODEM901, a 16-bit "MODEM" program for CP/M-86
  2. ;
  3. ;    by:    Michael J. Mellinger,
  4. ;        Data Research Associates, Inc.,
  5. ;        9270 Olive Boulevard,
  6. ;        St. Louis,
  7. ;        Missouri, 63132,
  8. ;        U.S.A.
  9. ;
  10. ;    Many, many fixes to Mike's original translation and
  11. ;    further translation by:
  12. ;
  13. ;        Bill Bolton,
  14. ;        Software Tools RCPM,
  15. ;        P.O. Box 80,
  16. ;        Newport Beach,
  17. ;        NSW, 2106,
  18. ;        Australia
  19. ;
  20. ;
  21. ;VERSION LIST, most recent version first
  22. ;25/Nov/83 Fixed batch bugs, changed to proper speed calculations,
  23. ;       fixed printer support, fixed batch file name problems.
  24. ;
  25. ;24/Sep/83 Fixed many bugs, properly implemented command line
  26. ;       processor, added new USART implementations for SYS
  27. ;       module. Tidied up documentation and added version
  28. ;       lists etc. Basically made it work right!
  29. ;       Version 9.01.04. Bill Bolton
  30. ;
  31. ;08/Jul/83 Original quick translation from CP/M-80 code.
  32. ;       Version 9.01.02. Michael Mellinger
  33. ;
  34. ;
  35. ;    See the file MODEM-86.DOC for further details, otherwise
  36. ;    the existing CP/M-80 MODEM901 documentation applies.
  37. ;
  38. ;    Clearing house for comments, changes, suggestions:
  39. ;    (No guarantee of response and no liability assumed)
  40. ;
  41. ;U.S.A.        Thousand Oaks Technical RCP/M
  42. ;        805-492-5472
  43. ;
  44. ;AUSTRALIA    Software Tools RCPM
  45. ;        (02) 997-1836 (CCITT V21 standard,
  46. ;                   Bell 103 won't work!)    
  47. ;
  48. ;
  49. ;            MODEM9
  50. ;
  51. ;BASED ON THE CP/M-80 MODEM PROGRAM CREATED BY WARD CHRISTENSEN
  52. ;
  53. ;         ********* N O T I C E S *********
  54. ;
  55. ;    Revisers releasing new versions should only
  56. ;    change the version number by the digits in
  57. ;    the last 2 places, i.e. 9.01.??
  58. ;
  59. ;    This program is in the public domain, please
  60. ;    respect the massive effort of the CP/M-86
  61. ;    "translators" by leaving their names intact
  62. ;    in the signon message.
  63. ;
  64. ;    At the same time we wish to give full credit to
  65. ;    the many individuals who created the CP/M-80
  66. ;    version of MODEM901, and wish to thank them for
  67. ;    their efforts (and especially Ward for starting
  68. ;    it all!).
  69. ;
  70. ;         **********************************
  71. ;
  72. ;This is just a header file to give the HEX output the right name.
  73. ;
  74. ;
  75.     include deff.a86
  76.     include start.a86
  77.     INCLUDE SYS.A86        ;Rename your XXXXSYS.A86 to this
  78.     include main.a86
  79.     INCLUDE CONSOLE.A86
  80.     INCLUDE    TERM.A86
  81.     INCLUDE    SENDRECV.A86
  82.     INCLUDE    FILES.A86
  83.     INCLUDE    FINISH.A86
  84. ;
  85.