home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / mex / mxo-dp10.asm < prev    next >
Assembly Source File  |  1994-07-13  |  9KB  |  298 lines

  1.  
  2. ; MXO-DP10.ASM -- Datapoint 1560 overlay file for MEX10.  05/24/84
  3. ;
  4. ; You will want to look this file over carefully. There are a number of
  5. ; options that you can use to configure the program to suit your taste.
  6. ; This file adapts the Datapoint 1560 computer to the modem program.
  7. ; Much of the information contained here is not in the main file.
  8. ;
  9. ; Edit this file for your preferences then follow the "TO USE:" example
  10. ; shown below.
  11. ;
  12. ; Use the MEX "SET" command to change the baudrate when desired.  It
  13. ; starts out at 300 baud when the program is first called up.
  14. ;
  15. ;    TO USE: First edit this file filling in answers for your own
  16. ;        equipment.  Then assemble with ASM.COM or equivalent
  17. ;        assembler.  Then use MLOAD to overlay the the results
  18. ;        of this program to the original .COM file.
  19. ;
  20. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  21. ; 05/24/84 - MEXified the overlay        - Biff Bueffel
  22. ; 11/11/83 - Renamed to M7DP-1.ASM, no changes    - Irv Hoff
  23. ; 07/27/83 - Renamed to work with MDM712    - Irv Hoff
  24. ; 07/01/83 - Revised to work with MDM711    - Irv Hoff
  25. ; 06/22/83 - Revised to work with MDM710    - Irv Hoff
  26. ; 05/25/83 - Updated to work with MDM709    - Irv Hoff
  27. ; 05/15/83 - Revised to work with MDM708    - Irv Hoff
  28. ; 04/11/83 - Updated to work with MDM707    - Irv Hoff
  29. ; 04/04/83 - Updated to work with MDM706    - Irv Hoff
  30. ; 02/27/83 - Updated to work with MDM705    - Irv Hoff
  31. ; 02/17/83 - Modified MDM703CF for Datapoint
  32. ;         1560 computers using an exter-
  33. ;         nal modem                - Irv Hoff
  34. ;
  35. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  36. ;
  37. BELL:        EQU    07H        ;bell
  38. CR:        EQU    0DH        ;carriage return
  39. ESC:        EQU    1BH        ;escape
  40. LF:        EQU    0AH        ;linefeed
  41. ;
  42. YES:        EQU    0FFH
  43. NO:        EQU    0
  44. ;
  45. ; MEX service processor stuff
  46. ;
  47. MEX    EQU    0D00H        ;address of the service processor
  48. INMDM    EQU    255        ;get char from port to A, CY=no more in 100 ms
  49. TIMER    EQU    254        ;delay 100ms * reg B
  50. TMDINP    EQU    253        ;B=# secs to wait for char, cy=no char
  51. CHEKCC    EQU    252        ;check for ^C from KBD, Z=present
  52. SNDRDY    EQU    251        ;test for modem-send ready
  53. RCVRDY    EQU    250        ;test for modem-receive ready
  54. SNDCHR    EQU    249        ;send a character to the modem (after sndrdy)
  55. RCVCHR    EQU    248        ;recv a char from modem (after rcvrdy)
  56. LOOKUP    EQU    247        ;table search: see CMDTBL comments for info
  57. PARSFN    EQU    246        ;parse filename from input stream
  58. BDPARS    EQU    245        ;parse baud-rate from input stream
  59. SBLANK    EQU    244        ;scan input stream to next non-blank
  60. EVALA    EQU    243        ;evaluate numeric from input stream
  61. LKAHED    EQU    242        ;get nxt char w/o removing from input
  62. GNC    EQU    241        ;get char from input, cy=1 if none
  63. ILP    EQU    240        ;inline print
  64. DECOUT    EQU    239        ;decimal output
  65. PRBAUD    EQU    238        ;print baud rate
  66. ;
  67. PRINT    EQU    9        ;MEX/BDOS print-string function call
  68.  
  69. ;
  70. PORT:        EQU    028H        ;Datapoint 1560 Modem Data Port
  71. MODCTL1:    EQU    PORT+1        ;Modem status port
  72. MODCTL2:    EQU    PORT+1        ;Modem control port
  73. MODDATP:    EQU    PORT        ;Modem data port
  74. ;
  75. ;
  76.         ORG    100H
  77. ;
  78.         DS    3    ;(for  "JMP   START" instruction)
  79. ;
  80.  
  81.         DB    NO    ;                    103H
  82.         DB    NO    ;                    104H
  83. TONEPULSE:    DB    'T'    ;T=tone, P=Pulse (Smartmodem-only)    105H
  84. CLOCK:        DB    37    ;clock speed in MHz x10, 25.5 MHz max.    106H
  85.                 ;20=2 MHh, 37=3.68 MHz, 40=4 MHz, etc.
  86. MSPEED:        DB    1    ;0=110 1=300 2=450 3=600 4=710 5=1200    107H
  87.                 ;6=2400 7=4800 8=9600 9=19200 default
  88. BYTDLY:        DB    5    ;0=0 delay  1=10ms  5=50 ms - 9=90 ms    108H
  89.                 ;default time to send character in ter-
  90.                 ;minal mode file transfer for slow BBS.
  91. CRDLY:        DB    5    ;0=0 delay 1=100 ms 5=500 ms - 9=900 ms 109H
  92.                 ;default time for extra wait after CRLF
  93.                 ;in terminal mode file transfer
  94. NOOFCOL:    DB    5    ;number of DIR columns shown        10AH
  95. SETUPTST:    DB    YES    ;yes=user-added Setup routine        10BH
  96. SCRNTEST:    DB    YES    ;Cursor control routine         10CH
  97. ACKNAK:        DB    YES    ;yes=resend a record after a non-ACK    10DH
  98.                 ;no=resend a record only after NAK
  99. BAKKUPBYTE:    DB    NO    ;yes=change any file same name to .BAK    10EH
  100. CRCDFLT:    DB    YES    ;yes=default to CRC checking        10FH
  101. TOGGLECRC:    DB    YES    ;yes=allow toggling of CRC to Checksum    110H
  102. CONVBKSP:    DB    NO    ;yes=convert backspace to rub        111H
  103. TOGGLEBK:    DB    NO    ;yes=allow toggling of bksp to rub    112H
  104. ADDLF:        DB    NO    ;no=no LF after CR to send file in    113H
  105.                 ;terminal mode (added by remote echo)
  106. TOGGLELF:    DB    NO    ;yes=allow toggling of LF after CR    114H
  107. TRANLOGON:    DB    YES    ;yes=allow transmission of logon    115H
  108.                 ;write logon sequence at location LOGON
  109. SAVCCP:        DB    YES    ;yes=do not overwrite CCP        116H
  110. LOCONEXTCHR:    DB    NO    ;yes=local command if EXTCHR precedes    117H
  111.                 ;no=external command if EXTCHR precedes
  112. TOGGLELOC:    DB    YES    ;yes=allow toggling of LOCONEXTCHR    118H
  113. LSTTST:        DB    YES    ;yes=printer available on printer port    19H
  114. XOFFTST:    DB    NO    ;yes=chcks for XOFF from remote    while    11AH
  115.                 ;sending a file in terminal mode
  116. XONWAIT:    DB    NO    ;yes=wait for XON after CR while    11BH
  117.                 ;sending a file in terminal mode
  118. TOGXOFF:    DB    YES    ;yes=allow toggling of XOFF checking    11CH
  119. IGNORCTL:    DB    YES    ;yes=CTL-chars above ^M not displayed    11DH
  120. EXTRA1:        DB    0    ;for future expansion            11EH
  121. EXTRA2:        DB    0    ;for future expansion            11FH
  122. BRKCHR        DB    '@'-40H    ;Send a 300 ms. break tone        120H
  123. NOCONNCT:    DB    'N'-40H    ;^N = Disconnect from phone line    121H
  124. LOGCHR:        DB    'L'-40H    ;^L = Send logon            122H
  125. LSTCHR:        DB    'P'-40H    ;^P = Toggle printer            123H
  126. UNSAVE:        DB    'R'-40H    ;^R = Close input text buffer        124H
  127. TRANCHR:    DB    'T'-40H ;^T = Transmit file to remote        125H
  128. SAVECHR:    DB    'Y'-40H    ;^Y = Open input text buffer        126H
  129. EXTCHR:        DB    '^'-40H    ;^^ = Send next character        127H
  130. ;
  131. ;
  132.         DS    2        ;                128H
  133. ;
  134. IN$MODCTL1:    IN    MODCTL1 ! RET    ;in modem control port        12AH
  135.         DS    7
  136. OUT$MODDATP:    OUT    MODDATP ! RET    ;out modem data port        134H
  137.         DS    7
  138. IN$MODDATP:    IN    MODDATP ! RET    ;in modem data port        13EH
  139.         DS    31
  140. ;
  141.         DS    2        ;Not used by MEX        160H
  142.         DS    6        ;                162H
  143. JMP$GOODBYE:    JMP    GOODBYE        ;                168H
  144. JMP$INITMOD:    JMP    INITMOD        ;go to user written routine    16BH
  145. JMP$NEWBAUD:    JMP    NEWBAUD        ;Change baudrate        16EH
  146.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    171H
  147.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    174H
  148. JMP$SETUPR:    JMP    SETUPR        ;                177H
  149.         DS    3        ;                17AH
  150. JMP$SYSVER:    JMP    SYSVER        ;                17DH
  151. JMP$BREAK:    JMP    SENDBRK        ;                180H
  152. ;
  153. ;
  154. ; Do not change the following six lines.
  155. ;
  156. JMP$ILPRT:    DS    3        ;                183H
  157. JMP$INBUF    DS    3        ;                186H
  158. JMP$INLNCOMP:    DS    3        ;                189H
  159. JMP$INMODEM    DS    3        ;                18CH
  160. JMP$NXTSCRN:    DS    3        ;                18FH
  161. JMP$TIMER:    DS    3        ;                192H
  162. ;
  163. ; Clear sequences -- CLREOS is clear to end of screen, CLRSCRN is clear
  164. ; entire screen.  
  165. ;
  166. CLREOS:        LXI    D,EOSMSG
  167.         MVI    C,PRINT
  168.         CALL    MEX
  169.         RET            
  170. ;
  171. CLRSCRN:    LXI    D,CLSMSG
  172.         MVI    C,PRINT
  173.         CALL    MEX
  174.         RET            
  175. ;
  176. ;
  177. SYSVER:        MVI    C,ILP
  178.         CALL    MEX
  179.         DB    'Version for Datapoint 1560 modem port 28H'    
  180.         DB    CR,LF,0
  181.         RET
  182. ;
  183. ; This routine allows a 300 ms. break tone to be sent to reset some
  184. ; time-share computers.
  185. ;
  186. SENDBRK:  MVI    A,1FH
  187.       JMP    GOODBYE1
  188. ;.....
  189. ;
  190. ;
  191. ; This routine sends a 300 ms. break tone and sets DTR low for the same
  192. ; length of time to disconnect some modems such as the Bell 212A, etc.
  193. ;
  194. GOODBYE:  MVI    A,15H        ;SEND BREAK, TURN OFF DTR
  195. ;
  196. GOODBYE1: OUT    MODCTL1        ;SEND TO STATUS PORT
  197.       MVI    B,3        ;DELAY ABOUT 300 MS.
  198.       MVI    C,TIMER
  199.       CALL    MEX
  200.       MVI    A,07H        ;NORMAL SEND/RECEIVE WITH DTR
  201.       OUT    MODCTL1        ;SEND TO STATUS PORT
  202.       RET
  203. ;
  204. ;
  205. ; Datapoint 1560 initialization -- sets CTC timers 20H and 1AH for
  206. ; baudrate in/out.
  207. ;
  208. INITMOD:  MVI    A,1        ;DEFAULT TRANSFER TIME TO 300 BAUD
  209.       STA    MSPEED
  210.       MVI    A,47H
  211.       OUT    20H
  212.       OUT    1AH
  213. ;
  214. INITMOD1: MVI    A,20H        ;DEFAULT TO 300 BAUD
  215.       OUT    20H
  216.       OUT    1AH
  217.       RET
  218. ;.....
  219. ;
  220. ;
  221. ;
  222. SETUPR:      MVI    C,SBLANK    ;Any arguments?
  223.       CALL    MEX
  224.       JC    TELL        ;If not, go display baud
  225.       LXI    D,CMDTBL
  226.       MVI    C,LOOKUP
  227.       CALL    MEX        ;Parse argument
  228.       PUSH    H        ;Save any parsed argument addrs on stack
  229.       RNC            ;If we have one, return to it
  230.       POP    H        ;Oops, input not found in table
  231.       MVI    C,ILP
  232.       CALL    MEX        ;Tell user input not valid
  233.       DB    CR,LF,'Only 300 or 1200 allowed on SET command',CR,LF,0
  234.       RET
  235. ;
  236. CMDTBL:      DB    '30','0'+80H
  237.       DW    OK300
  238.       DB    '120','0'+80H
  239.       DW    OK1200
  240.       DB    0
  241. ;
  242. TELL:      MVI    C,ILP
  243.       CALL    MEX        ;Print current baud rate
  244.       DB    CR,LF,'Baud rate is now: ',0
  245.       LDA    MSPEED
  246.       MVI    C,PRBAUD
  247.       CALL    MEX
  248.       RET
  249. ;
  250. ;
  251. OK300:      MVI    A,1        ;MSPEED 300 BAUD VALUE
  252.       LHLD    BD300        ;GET 300 BAUD PARAMETERS IN 'HL'
  253.       JMP    LOADBD        ;GO LOAD THEM
  254. ;
  255. OK450:      MVI    A,2
  256.       LHLD    BD450
  257.       JMP    LOADBD
  258. ;
  259. OK1200:      MVI    A,5
  260.       LHLD    BD1200
  261.       JMP    LOADBD
  262. ;
  263. OK9600:      MVI    A,8
  264.       LHLD    BD9600
  265. ;
  266. LOADBD:      STA    INITMOD+1    ;CHANGE TIME-TO-SEND TO MATCH BAUDRATE
  267.       MOV    A,L        ;GET BAUDRATE BYTE
  268.       STA    INITMOD1+1    ;STORE IN INITMOD
  269.       JMP    INITMOD        ;REINITIALIZE TO NEW BAUDRATE, THEN DONE
  270. ;
  271. ;
  272. NEWBAUD:  CPI    1
  273.       JZ    OK300
  274.       CPI    5
  275.       JZ    OK1200
  276.       RET
  277. ;
  278. ;
  279. ; TABLE OF BAUDRATE PARAMETERS
  280. ;
  281. BD300:      DW    0020H        ;9600/300  CONVERTED TO HEX VALUE
  282. BD450:      DW    0015H        ;9600/450  CONVERTED TO HEX VALUE
  283. BD1200:      DW    0008H        ;9600/1200 CONVERTED TO HEX VALUE
  284. BD9600:      DW    0001H        ;9600/9600 CONVERTED TO HEX VALUE    
  285. ;
  286. BAUDBUF:  DB    10,0
  287.       DS    10
  288. ;
  289. EOSMSG:      DB    ESC,'y',0,0,0,'$'              
  290. CLSMSG:      DB    ESC,':',0,0,0,'$'
  291. ;           (END OF INITMOD AND SETUP ROUTINES)
  292. ;
  293. ; NOTE:  MUST TERMINATE PRIOR TO 0B00H (with Smartmodem)
  294. ;                 0D00H (without Smartmodem)
  295. ;
  296.       END
  297. ;
  298.