home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / MODEMS / MODEM7 / MDM7DB.ASM < prev    next >
Assembly Source File  |  2000-06-30  |  9KB  |  261 lines

  1. ;
  2. ; MDM711,MDM712 driver for Dynabyte Serial Port 1 at 80h
  3. ;
  4.  ;downloaded 4/29/84 from Dennis Recla's RCBB.  Recla said
  5.  ; the port assignment may or may not be good -- try it.
  6.  ; He also said he expects a revised version to be available
  7.  ; within a couple of weeks.
  8.  ;                                   eos
  9. ;
  10. ; This file  is an extenions to the overlay set that
  11. ; is provided with MODEM711 and MODEM712 and should work with both
  12. ; programs.  All of these drivers have not been tested. If you have
  13. ; any problems or updates,  leave a message to me on the Dallas
  14. ; Metroplex RCPM (214) 739-1935 (evenings and weekends)
  15. ;
  16. ;
  17. ;                                       Steve Holtzclaw
  18. ;
  19. ;
  20. ; You will want to look this file over carefully. There are a number of
  21. ; options that you can use to configure the program to suit your taste.
  22. ; This file places particular emphasis on using an external modem that
  23. ; does not match one of the other special overlays.  You would use the
  24. ; normal CP/M "Configure" program to set the modem to whatever baud rate
  25. ; you would normally use (such as 300 or 1200, etc.)  Then perhaps just
  26. ; make a second .COM file if you need both 300 and 1200 and do not wish
  27. ; to write your own initialization or "set baud" routine.
  28. ;
  29. ; You could look at other overlay files to see how the GOODBYE and/or
  30. ; SETUPR areas are handled.  You could then adapt one of those, if ap-
  31. ; propriate for your equipment in this overlay.  Some examples:
  32. ;
  33. ;     "DP"  Datapoint 1560 overlay using 8251 I/O and CTC timers for
  34. ;              setting baud rates
  35. ;     "H8"  Heath H89 overlay for 8250 I/O and programmable baud rates
  36. ;     "HZ"  Zenith 120 overlay for 2661B initialization and baud rates
  37. ;     "XE"  Xerox 820II overlay for Z80-SIO intialization, etc.
  38. ;
  39. ; Edit this file for your preferences then follow the "TO USE:" example
  40. ; shown below.
  41. ;
  42. ;    TO USE: First edit this file filling in answers for your own
  43. ;        equipment.  Then assemble with ASM.COM or equivalent
  44. ;        assembler.  Then use DDT to overlay the the results
  45. ;        of this program to the original .COM file:
  46. ;
  47. ;        A>DDT MDM711.COM (or MDM712.COM)
  48. ;        DDT VERS 2.2
  49. ;        NEXT  PC
  50. ;        4300 0100
  51. ;        -IAUXDVnnn.HEX        (note the "I" command)
  52. ;        -R            ("R" loads in the .HEX file)
  53. ;        NEXT  PC
  54. ;        4300 0000
  55. ;        -G0            (return to CP/M)
  56. ;        A>SAVE 66 MDM711.COM    (now have a modified .COM file)
  57. ;
  58. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  59. ;
  60. ; 08/04/83 - Aux drivers created                - Steve Holtzclaw
  61. ; 07/01/83 - Revised to work with MDM711    - Irv Hoff
  62. ; 07/01/83 - Revised to work with MDM710    - Irv Hoff
  63. ; 05/27/83 - Updated to work with MDM709    - Irv Hoff
  64. ; 05/15/83 - Revised to work with MDM708    - Irv Hoff
  65. ; 04/11/83 - Updated to work with MDM707    - Irv Hoff
  66. ; 04/04/83 - First version of this file        - Irv Hoff
  67. ;
  68. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  69. ;
  70. BELL:        EQU    07H        ;bell
  71. CR:        EQU    0DH        ;carriage return
  72. ESC:        EQU    1BH        ;escape
  73. LF:        EQU    0AH        ;linefeed
  74. ;
  75. YES:        EQU    0FFH
  76. NO:        EQU    0
  77. ;
  78. MODCTL1:    EQU    83h        ;MODEM CONTROL PORT
  79. MODDATP:    EQU    80h        ;MODEM DATA IN PORT
  80. MODDATO:    EQU    86h        ;MODEM DATA OUT PORT
  81. MODDCDB:    EQU    0        ;CARRIER DETECT BIT
  82. MODDCDA:    EQU    0        ;VALUE WHEN ACTIVE
  83. BAUDRP:     EQU    0        ;BAUD RATE PORT
  84. MODCTL2:    EQU    83h        ;2ND MODEM CONTROL PORT
  85. MODRCVB:    EQU    04h        ;BIT TO TEST FOR RECEIVE
  86. MODRCVR:    EQU    04h        ;VALUE WHEN READY
  87. MODSNDB:    EQU    10h        ;BIT TO TEST FOR SEND
  88. MODSNDR:    EQU    10h        ;VALUE WHEN READY
  89. ;
  90.         ORG    100H
  91. ;
  92. ;
  93. ; Change the clock speed to suit your system
  94. ;
  95.         DS    3    ;(for  "JMP   START" instruction)
  96. ;
  97. PMMIMODEM:    DB    NO    ;yes=PMMI S-100 Modem            103H
  98. SMARTMODEM:    DB    NO    ;yes=HAYES Smartmodem, no=non-PMMI    104H
  99. TOUCHPULSE:    DB    'T'    ;T=touch, P=pulse (Smartmodem-only)    105H
  100. CLOCK:        DB    40    ;clock speed in MHz x10, 25.5 MHz max.    106H
  101.                 ;20=2 MHh, 37=3.68 MHz, 40=4 MHz, etc.
  102. MSPEED:        DB    1    ;0=110 1=300 2=450 3=600 4=710 5=1200   107H
  103.                 ;6=2400 7=4800 8=9600 9=19200 default
  104. BYTDLY:        DB    5    ;0=0 delay  1=10ms  5=50 ms - 9=90 ms   108H
  105.                 ;default time to send character in ter-
  106.                 ;minal mode file transfer for slow BBS.
  107. CRDLY:        DB    5    ;0=0 delay 1=100 ms 5=500 ms - 9=900 ms 109H
  108.                 ;default time for extra wait after CRLF
  109.                 ;in terminal mode file transfer
  110. NOOFCOL:    DB    5    ;number of DIR columns shown        10AH
  111. SETUPTST:    DB    NO    ;yes=user-added Setup routine        10BH
  112. SCRNTEST:    DB    NO    ;Cursor control routine         10CH
  113. ACKNAK:        DB    YES    ;yes=resend a record after any non-ACK    10DH
  114.                 ;no=resend a record after a valid-NAK
  115. BAKUPBYTE:    DB    NO    ;yes=change any file same name to .BAK    10EH
  116. CRCDFLT:    DB    YES    ;yes=default to CRC checking        10FH
  117. TOGGLECRC:    DB    YES    ;yes=allow toggling of CRC to Checksum    110H
  118. CONVBKSP:    DB    NO    ;yes=convert backspace to rub        111H
  119. TOGGLEBK:    DB    YES    ;yes=allow toggling of bksp to rub    112H
  120. ADDLF:        DB    NO    ;no=no LF after CR to send file in    113H
  121.                 ;terminal mode (added by remote echo)
  122. TOGGLELF:    DB    YES    ;yes=allow toggling of LF after CR    114H
  123. TRANLOGON:    DB    YES    ;yes=allow transmission of logon    115H
  124.                 ;write logon sequence at location LOGON
  125. SAVCCP:        DB    YES    ;yes=do not overwrite CCP        116H
  126. LOCONEXTCHR:    DB    NO    ;yes=local command if EXTCHR precedes    117H
  127.                 ;no=external command if EXTCHR precedes
  128. TOGGLELOC:    DB    YES    ;yes=allow toggling of LOCONEXTCHR    118H
  129. LSTTST:        DB    YES    ;yes=printer available on printer port    119H
  130. XOFFTST:    DB    NO    ;yes=checks for XOFF from remote while    11AH
  131.                 ;sending a file in terminal mode
  132. XONWAIT:    DB    NO    ;yes=wait for XON after CR while    11BH
  133.                 ;sending a file in terminal mode
  134. TOGXOFF:    DB    YES    ;yes=allow toggling of XOFF checking    11CH
  135. IGNORCTL:    DB    YES    ;yes=CTL-chars above ^M not displayed    11DH
  136. EXTRA1:        DB    0    ;for future expansion            11EH
  137. EXTRA2:        DB    0    ;for future expansion            11FH
  138. BRKCHR:        DB    '@'-40H    ;^@ = Send 300 ms. break tone        120H
  139. NOCONNCT:    DB    'N'-40H    ;^N = Disconnect from the phone line    121H
  140. LOGCHR:        DB    'O'-40H    ;^O = Send logon            122H
  141. LSTCHR:        DB    'P'-40H    ;^P = Toggle printer            123H
  142. UNSAVE:        DB    'R'-40H    ;^R = Close input text buffer        124H
  143. TRANCHR:    DB    'T'-40H ;^T = Transmit file to remote        125H
  144. SAVECHR:    DB    'Y'-40H    ;^Y = Open input text buffer        126H
  145. EXTCHR:        DB    '^'-40H    ;^^ = Send next character        127H
  146. ;
  147. ;
  148.         DS    2        ;                128H
  149. ;
  150. IN$MODCTL1:    IN    MODCTL1 ! RET    ;in modem control port             12AH
  151.         DS    7
  152. OUT$MODDATP:    OUT    MODDATP ! RET    ;out modem data port        134H
  153.         DS    7
  154. IN$MODDATP:    IN    MODDATP ! RET    ;in modem data port        13EH
  155.         DS    7
  156. ANI$MODRCVB:    ANI    MODRCVB    ! RET    ;bit to test for receive ready    148H
  157.  
  158. CPI$MODRCVR:    CPI    MODRCVR    ! RET    ;value of rcv. bit when ready    14BH
  159. ANI$MODSNDB:    ANI    MODSNDB    ! RET    ;bit to test for send ready    14EH
  160. CPI$MODSNDR:    CPI    MODSNDR    ! RET    ;value of send bit when ready    151H
  161.         DS    6        ;                156H
  162. ;
  163. OUT$MODCTL1:    OUT    MODCTL1    ! RET    ;out modem control port #2    15AH
  164. OUT$MODCTL2:    OUT    MODCTL2    ! RET    ;out modem control port #1    15DH
  165. ;
  166. LOGONPTR:    DW    LOGON        ;for user message.        160H
  167.         DS    6        ;                162H
  168. JMP$GOODBYE:    JMP    GOODBYE        ;                168H
  169. JMP$INITMOD:    JMP    INITMOD        ;go to user written routine    16BH
  170.         RET  !  NOP  !  NOP    ;(by-passes PMMI routine)    16EH
  171.         RET  !  NOP  !  NOP    ;(by-passes PMMI routine)    171H
  172.         RET  !  NOP  !  NOP    ;(by-passes PMMI routine)    174H
  173. JMP$SETUPR:    JMP    SETUPR        ;                177H
  174. JMP$SPCLMENU:    JMP    SPCLMENU    ;                17AH
  175. JMP$SYSVER:    JMP    SYSVER        ;                17DH
  176. JMP$BREAK:    JMP    SENDBRK        ;                180H
  177. ;
  178. ;
  179. ; Do not change the following six lines.
  180. ;
  181. JMP$ILPRT:    DS    3        ;                183H
  182. JMP$INBUF    DS    3        ;                186H
  183. JMP$INLNCOMP:    DS    3        ;                189H
  184. JMP$INMODEM    DS    3        ;                18CH
  185. JMP$NXTSCRN:    DS    3        ;                18FH
  186. JMP$TIMER    DS    3        ;                192H
  187. ;
  188. ; Routine to clear to end of screen.  If using CLREOS and CLRSCRN, set
  189. ; SCRNTEST to YES at 010AH (above).
  190. ;
  191. CLREOS:        CALL    JMP$ILPRT    ;                195H
  192.         DB    0,0,0,0,0    ;                198H
  193.         RET            ;                19DH
  194. ;
  195. CLRSCRN:    CALL    JMP$ILPRT    ;                19EH
  196.         DB    0,0,0,0,0    ;                1A1H
  197.         RET            ;                1A6H
  198.     
  199. ;
  200. SYSVER:        CALL    JMP$ILPRT    ;                1A7H
  201.         DB    'Version for external modem'
  202.         DB    CR,LF,0
  203.         RET
  204. ;.....
  205. ;
  206. ;
  207. ;-----------------------------------------------------------------------
  208. ;
  209. ; NOTE:  You can change the SYSVER message to be longer or shorter.  The
  210. ;     end of your last routine should terminate by 0400H (601 bytes
  211. ;     available after start of SYSVER) if using the Hayes Smartmodem
  212. ;     or by address 0C00H (2659 bytes) otherwise.
  213. ;
  214. ;-----------------------------------------------------------------------
  215. ;
  216. ; You can put in a message at this location which can be called up with
  217. ; CTL-O if TRANLOGON has been set TRUE.  You can use several lines if
  218. ; desired.  End with a 0.
  219. ;
  220. LOGON:        DB    'How are you today?',CR,LF,0
  221. ;.....
  222. ;
  223. ;
  224. ; Add your own routine here to send a break tone to reset some time-share
  225. ; computers, if desired.
  226. ;
  227. SENDBRK:    RET
  228. ;.....
  229. ;
  230. ;
  231. ; Add your own routine here to put DTR low and/or send a break tone.
  232. ; Check other routines such as MDM709DP.ASM which is using this feature.
  233. ;
  234. GOODBYE:    RET
  235. ;.....
  236. ;
  237. ;
  238. ; You can use this area for any special initialization or setup you may
  239. ; wish to include.  Each must stop with a RET.  You can check the other
  240. ; available overlays for ideas how to write your own routines if that
  241. ; may be of some help.
  242. ;
  243. INITMOD:  RET
  244. ;
  245. SETUPR:      RET
  246. ;
  247. ;
  248. ; If using the Hayes Smartmodem this is unavailable without a special
  249. ; change.
  250. ;
  251. SPCLMENU:  RET
  252. ;
  253. ;
  254. ; NOTE:  MUST TERMINATE PRIOR TO 0400H (with Smartmodem)
  255. ;                 0C00H (without Smartmodem)
  256. ;.....
  257. ;
  258.       END
  259. ;
  260.