home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / simtel / sigm / vols000 / vol093 / mnumb798.asm < prev    next >
Assembly Source File  |  1984-04-29  |  2KB  |  58 lines

  1. ;
  2. ;            MNUMB797.ASM
  3. ;
  4. ;    Telephone number overlay file for MODEM797.
  5. ;
  6. ; This file can be edited to make a new library of telephone
  7. ; numbers for MODEM7. Each entry must be 32 bytes long and
  8. ; no more than 26 (A-Z) telephone numbers are allowed. Follow
  9. ; the format for the library entries already in the file; be
  10. ; sure spaces are used, not tabs. R at the end of a number
  11. ; indicates a ringback system.
  12. ;
  13. ; Procedure for use:
  14. ;
  15. ;    1) Edit this file for new numbers,
  16. ;    2) Assemble the file,
  17. ;    3) Overlay MODEM797.COM with MNUMB797.HEX using DDT,
  18. ;    4) SAVE 64 MODEM797.COM
  19. ;
  20. ; NOTE FOR THOSE REVISING MODEM7: Check the location of NUMBLIB in
  21. ; MODEM7 to make sure the ORG is correct in this file.
  22. ;
  23. ;
  24.     ORG    0617H
  25. ;
  26. NUMBLIB:
  27. ;    '----5---10---15---20---25-----32'
  28. DB    'A=Amrad             703-734-1387'    ;'A'
  29. DB    'B=Ben Bronson       312-955-4493'    ;'B'
  30. DB    'C=CBBS Pasadena     213-799-1632'    ;'C'
  31. DB    'D=PMMI              703-379-0303'    ;'D'
  32. DB    'E=Tech. CBBS        313-846-6127'    ;'E'
  33. DB    'F=Ron Fowler       313-729-1905R'    ;'F'
  34. DB    'G=Gasnet NASA       301-344-9156'    ;'G'
  35. DB    'H=Dave Hardy        313-846-6127'    ;'H'
  36. DB    'I=Wayne Hammerly    301-953-3753'    ;'I'
  37. DB    'J=RBBS Pasadena     213-356-1034'    ;'J'
  38. DB    'K=David Kozinn      216-334-4604'    ;'K'
  39. DB    'L=Program Store     202-337-4694'    ;'L'
  40. DB    'M=Kelly Smith       805-527-9321'    ;'M'
  41. DB    'N=SuperBrain Sys    617-862-0781'    ;'N'
  42. DB    'O=R.L.Plouffe       703-524-2549'    ;'O'
  43. DB    'P=K.Petersen       313-759-6569R'    ;'P'
  44. DB    'Q=Cranford,NJ RBBS  201-272-1874'    ;'Q'
  45. DB    'R=Bill Earnest      215-398-3937'    ;'R'
  46. DB    'S=                              '    ;'S'
  47. DB    'T=                              '    ;'T'
  48. DB    'U=                              '    ;'U'
  49. DB    'V=                              '    ;'V'
  50. DB    'W=                              '    ;'W'
  51. DB    'X=                              '    ;'X'
  52. DB    'Y=                              '    ;'Y'
  53. DB    'Z=                              '    ;'Z'
  54. ;    '----5---10---15---20---25-----32'
  55. ;
  56.     END
  57. ;
  58.