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

  1.     TITLE    'MEX RACAL-VADIC VA3451 AUTO DIAL - V1.0'
  2. ;
  3. ; (DELETE ABOVE TITLE LINE IF ASSEMBLING WITH ASM)
  4. ;
  5. ; MXO-RT10.ASM  Original release 6/13/84
  6. ;
  7. ; Racal Vadic VA3451 overlay for MEX: revision 1.0
  8. ;  Written 13 June 1984 by Dave Mabry
  9. ;  Adapted using information and excerpts from Ron Fowler's
  10. ;   overlay for the PMMI modem.
  11. ;
  12. ; Please leave any bug reports or requests on TCBBS in Dearborn,
  13. ;  Michigan (313-846-6127) or Royal Oak RCPM (313-759-6569)
  14. ;  or call me at 313-956-5703 (voice).        mabry
  15. ;
  16. ; Note that unlike the Hayes modem, the Racal Vadic does not
  17. ;  have an ascii command that will cause a disconnect.  Therefore
  18. ;  for that feature of MEX to work properly, your normal overlay
  19. ;  for your machine must be able to toggle DTR in the DISCV routine.
  20. ;
  21. ; This overlay will work with any modem overlay that terminates
  22. ; prior to 0B00H
  23. ;
  24. ; Note: For the disconnect to work properly, you MUST have DISCV
  25. ;    implemented in your normal machine overlay.  This file
  26. ;    is overlayed in addition to your overlay.
  27. ;    Also, your overlay MUST have the entry point NEWBDV that
  28. ;    allows this program to set the baud rate by passing a
  29. ;    single byte parameter in the A register.
  30. ;    See Ron Fowler's overlay for the GodBout S-100 board for
  31. ;    examples of these routines.
  32. ;
  33. FALSE    EQU    0
  34. TRUE    EQU    NOT FALSE
  35. ;
  36. ;
  37. ; SYSTEM CONSTANTS
  38. ;
  39. DIALV    EQU    0162H        ;LOCATION OF DIAL VECTOR IN OVERLAY
  40. DISCV    EQU    0165H        ;LOCATION OF DISCONNECT VECTOR IN OVERLAY
  41. DIALOC    EQU    0B00H        ;DIALING CODE GOES HERE
  42. ;
  43. ;
  44. ; MEX service processor stuff ... MEX supports an overlay service
  45. ; processor, located at 0D00H (and maintained at this address from
  46. ; version to version).  If your overlay needs to call BDOS for any
  47. ; reason, it should call MEX instead; function calls below about
  48. ; 240 are simply passed on to the BDOS (console and list I/O calls
  49. ; are specially handled to allow modem port queueing, which is why
  50. ; you should call MEX instead of BDOS).  MEX uses function calls
  51. ; above about 244 for special overlay services (described below).
  52. ;
  53. ; Some sophisticated overlays may need to do file I/O; if so, use
  54. ; the PARSFN MEX call with a pointer to the FCB in DE to parse out
  55. ; the name.  This FCB should support a spare byte immediately pre-
  56. ; ceeding the actual FCB (to contain user # information).  If you've
  57. ; used MEX-10 for input instead of BDOS-10 (or you're parsing part
  58. ; of a SET command line that's already been input), then MEX will
  59. ; take care of DU specs, and set up the FCB accordingly.  There-
  60. ; after all file I/O calls done through the MEX service processor
  61. ; will handle drive and user with no further effort necessary on
  62. ; the part of the programmer.
  63. ;
  64. MEX    EQU    0D00H        ;address of the service processor
  65. INMDM    EQU    255        ;get char from port to A, CY=no more in 100 ms
  66. TIMER    EQU    254        ;delay 100ms * reg B
  67. TMDINP    EQU    253        ;B=# secs to wait for char, cy=no char
  68. CHEKCC    EQU    252        ;check for ^C from KBD, Z=present
  69. SNDRDY    EQU    251        ;test for modem-send ready
  70. RCVRDY    EQU    250        ;test for modem-receive ready
  71. SNDCHR    EQU    249        ;send a character to the modem (after sndrdy)
  72. RCVCHR    EQU    248        ;recv a char from modem (after rcvrdy)
  73. LOOKUP    EQU    247        ;table search: see CMDTBL comments for info
  74. PARSFN    EQU    246        ;parse filename from input stream
  75. BDPARS    EQU    245        ;parse baud-rate from input stream
  76. SBLANK    EQU    244        ;scan input stream to next non-blank
  77. EVALA    EQU    243        ;evaluate numeric from input stream
  78. LKAHED    EQU    242        ;get nxt char w/o removing from input
  79. GNC    EQU    241        ;get char from input, cy=1 if none
  80. ILP    EQU    240        ;inline print
  81. DECOUT    EQU    239        ;decimal output
  82. PRBAUD    EQU    238        ;print baud rate
  83. ;
  84. ;
  85. CONOUT    EQU    2        ;simulated BDOS function 2: console char out
  86. PRINT    EQU    9        ;simulated BDOS function 9: print string
  87. INBUF    EQU    10        ;input buffer, same structure as BDOS 10
  88. ;
  89. MSPEED    EQU    107H        ; Variable in hardware overlay
  90. NEWBDV    EQU    16EH        ; Entry in overlay to set baud rate
  91. ;
  92. ;
  93. CR    EQU    13
  94. LF    EQU    10
  95. ;
  96. ;
  97.     ORG    DIALV        ;OVERLAY THE DIALING VECTOR
  98.     JMP    DIAL
  99. ;    
  100. ;
  101. ; This is the DIAL routine called by MEX to dial a digit. The digit
  102. ; to be dialed is passed in the A register.  Note that two special
  103. ; codes must be intercepted as non-digits: 254 (start dial sequence)
  104. ; and 255 (end-dial sequence).  Mex will always call DIAL with 254
  105. ; in the accumulator prior to dialing a number.  Mex will also call
  106. ; dial with 255 in A as an indication that dialing is complete. Thus,
  107. ; the overlay may use these values to "block" the number, holding it
  108. ; in a buffer until it is completely assembled (in fact, that's the
  109. ; scheme employed here for the Racal Vadic).
  110. ;
  111. ; After the 254-start-dial sequence, MEX will call the overlay with
  112. ; digits, one-at-a-time.  MEX will make no assumptions about the dig-
  113. ; its, and will send each to the DIAL routine un-inspected (some modems,
  114. ; like the Smartmodem, allow special non-numeric characters in the
  115. ; phone number, and MEX may make no assumptions about these).
  116. ;
  117. ; After receiving the end-dial sequence (255) the overlay must take
  118. ; whatever end-of-dial actions are necessary *including* waiting for
  119. ; carrier at the distant end.  The overlay should monitor the keyboard
  120. ; during this wait (using the MEX keystat service call), and return
  121. ; an exit code to MEX in the A register, as follows:
  122. ;
  123. ;    0 - Carrier detected, connection established
  124. ;    1 - Far end busy (only for modems that can detect this condition)
  125. ;    2 - No answer (or timed out waiting for modem response)
  126. ;    3 - Keyboard abort (^C only: all others should be ignored)
  127. ;    4 - Error reported by modem
  128. ;
  129. ; <No other codes should be returned after an end-dial sequence>
  130. ;
  131. ; The overlay should not loop forever in the carrier-wait routine, but
  132. ; instead use either the overlay timer vector, or the INMDMV (timed 100
  133. ; ms character wait) service call routine.
  134. ;
  135. ; The DIAL routine is free to use any of the registers, but must return
  136. ; the above code after an end-dial sequence
  137. ;
  138.     ORG    DIALOC
  139. ;
  140. DIAL:    LHLD    DIALPT        ;FETCH POINTER
  141.     CPI    254        ;START DIAL?
  142.     JZ    STDIAL        ;JUMP IF SO
  143.     CPI    255        ;END DIAL?
  144.     JZ    ENDIAL        ;JUMP IF SO
  145. ;
  146. ; Not start or end sequence, must be a digit to be sent to the modem
  147. ;
  148.     MOV    M,A        ;PUT CHAR IN BUFFER
  149.     INX    H        ;ADVANCE POINTER
  150.     SHLD    DIALPT        ;STUFF PNTR
  151.     RET            ;ALL DONE
  152. ;
  153. ; Here on a start-dial sequence
  154. ;
  155. STDIAL:    LXI    H,DIALBF    ;SET UP BUFFER POINTER
  156.     SHLD    DIALPT
  157.     RET
  158. ;
  159. ; Here on an end-dial sequence
  160. ;
  161. ENDIAL:
  162.     MVI    M,0        ; Terminate phone number string
  163.     XRA    A
  164.     STA    BDFLAG        ; Zero BDFLAG
  165.     LDA    MSPEED        ; Get baud rate set by MEX
  166.     CPI    5        ; 1200 baud ???
  167.     JZ    CLEAR        ; Nothing to do if 1200 baud
  168.     STA    BDSAVE        ; Save baud rate locally
  169.     MVI    A,TRUE        ; Else, set flag
  170.     STA    BDFLAG
  171.     MVI    A,1        ; If not 1200 baud then set 300
  172.     CALL    NEWBDV        ;  baud for dialing
  173. CLEAR:
  174.     MVI    C,INMDM        ; Clean out the data buffer in usart
  175.     CALL    MEX
  176.     JNC    CLEAR        ; Get all available
  177.     LXI    H,WAKEUP    ; Get modem's attention
  178.     CALL    RVSEND
  179.     CALL    STWAIT        ; After "HELLO..."
  180.     LXI    H,DCMD        ; Send "dial" command to modem
  181.     CALL    RVSEND
  182.     CALL    SENDCR        ; Terminate dial command
  183.     LXI    H,DIALBF    ; Point to number
  184.     CALL    RVSEND        ; Send it to modem
  185.     CALL    SENDCR        ; Send <cr> to terminate phone number
  186.     LXI    H,CRMSG        ; Second <cr> to initiate dialing
  187.     CALL    RVSEND
  188. ;
  189. ; Here starts the main loop waiting for messages from the modem
  190. ;  and interpreting them.  Some are just passed to the console
  191. ;  and others trigger a specific action.
  192. ;
  193. DLOOP:
  194.     LXI    H,RESPBF    ; Point to response buffer
  195.     MVI    C,255        ; Long wait here
  196.     CALL    CATCHR        ; Catch response from modem
  197.     ORA    A        ; Zero return code ?
  198.     JNZ    RETRN        ; No, return error code
  199.     MOV    A,B        ; Get character count from CATCHR
  200.     ORA    A        ; Hope it isn't zero
  201.     JZ    DLOOP        ; If it is, then ignore this response
  202.     LXI    H,RESPBF    ; Point to string from modem
  203.     LXI    D,RSPTBL    ; Point to valid response table
  204.     CALL    COMPR        ; Find out which response we got
  205.     MOV    A,B        ; Get return value
  206.     CPI    255        ; No response match
  207.     JNZ    DIAL05
  208. ERRET:
  209.     MVI    A,2        ; Timed out waiting for answer
  210.     JMP    IDLE        ; Disconnect and return error code
  211. DIAL05:
  212.     CPI    2        ; Failed call ?
  213.     JZ    ERRET        ; Error return
  214.     CPI    1        ; Dialing message ?
  215.     JNZ    DIAL10
  216.     MVI    C,ILP
  217.     CALL    MEX
  218.     DB    'Dialing...',0
  219.     JMP    DLOOP
  220. DIAL10:
  221.     CPI    3        ; On line ?
  222.     JNZ    ERRET
  223.     XRA    A        ; Return on line code to MEX
  224. RETRN:
  225.     PUSH    PSW        ; Save return code
  226. RET03:
  227.     LDA    BDFLAG        ; See if we have to reset baud rate
  228.     ORA    A
  229.     JZ    RET05        ; Return if no
  230.     LDA    BDSAVE        ; Get saved rate code
  231.     CALL    NEWBDV        ; Set old baud again
  232. RET05:
  233.     POP    PSW        ; Get return code
  234.     RET
  235.  
  236. IDLE:
  237. ;
  238. ; Forces modem into idle state by sending "idle" command and
  239. ;  then toggling DTR using the user's DISCV entry.
  240. ; Preserves any return code that may be in register A.
  241. ;
  242.     PUSH    PSW        ; Preserve any return code
  243.     CALL    DISCV        ; Make sure modem disconnects
  244.     LXI    H,IDLCMD    ; Send idle command
  245.     CALL    RVSEND
  246.     JMP    RET03
  247.  
  248. SENDCR:
  249. ;
  250. ; Sends a carriage return character to the modem and waits for a
  251. ;  line feed character to be returned.
  252. ;
  253.     LXI    H,CRMSG        ; Send <cr> to modem
  254.     CALL    RVSEND
  255.  
  256. ; Note: execution falls through to LFWAIT
  257. ;
  258. ; Waits til the character from the modem is a line feed
  259. ; Returns the same codes as CATCHR.
  260. ;
  261. LFWAIT:
  262.     MVI    C,10        ; Up to one second for <lf>
  263.     LXI    H,RESPBF
  264.     JMP    CATCHR        ; Use CATCHR to wait for <lf>
  265.  
  266. STWAIT:
  267.     MVI    C,INMDM        ; Get one character from modem
  268.     CALL    MEX
  269.     JC    STWAIT        ; If time out, wait
  270.     CPI    '*'        ; Is it the "*" prompt ?
  271.     JNZ    STWAIT
  272.     RET
  273.  
  274.  
  275. ; Table of valid responses from modem
  276. RSPTBL:
  277.     DB    'HE',0        ; "hello..."
  278.     DB    'DI',0        ; "dialing..."
  279.     DB    'FA',0        ; "failed call"
  280.     DB    'ON',0        ; "on line"
  281.     DB    0        ; Table terminator
  282.  
  283.  
  284. COMPR:
  285. ; Compares a string of characters in memory to a table of
  286. ;  strings.  Each entry of the table must be terminated by
  287. ;  a zero byte, and the table must be terminated by another
  288. ;  zero byte.
  289. ; Inputs:  HL points to the string to look for
  290. ;       DE points to the table
  291. ; Output:  B contains the number of the table entry that
  292. ;         matches the string, and a 255 if no entry matched.
  293. ;
  294.     MVI    B,0        ; Init index
  295. CMPR05:
  296.     MVI    C,2        ; Number of characters to try to match
  297. CMPR10:
  298.     LDAX    D        ; Fetch char from table
  299.     CMP    M        ; Same as char in string ?
  300.     JNZ    CMPR15        ; Jump if not this entry in table
  301.     INX    H        ; Else, point to next char in string
  302.     INX    D        ;  and next char in table entry
  303.     DCR    C        ; Decrement counter of characters
  304.     JNZ    CMPR10        ; Go check next char
  305.     RET            ; B contains the index of match
  306. CMPR15:
  307.     INR    B        ; Increment index
  308. CMPR20:
  309.     INX    D        ; Next char in table
  310.     LDAX    D        ; Get next char from table
  311.     ORA    A        ; Is it last char in that entry ?
  312.     JNZ    CMPR20        ; No, keep looking
  313.     INX    D        ; Yes, then point to first char of next one
  314.     LDAX    D        ; Now check for end of table
  315.     ORA    A        ; Zero delimits table
  316.     JNZ    CMPR05        ; Go check this table entry
  317.     MVI    B,255        ; No match return code
  318.     RET
  319.  
  320.  
  321. CATCHR:
  322. ;
  323. ; Catch response from modem.
  324. ; Input:  HL pointing to buffer for characters from modem
  325. ;      C  delay allowed before timeout (multiples of 100ms)
  326. ; Output: Buffer contains the string received from modem with
  327. ;       any control characters filtered out.
  328. ;      C  count of characters received before <cr>
  329. ;      A  error code:  0 ==> normal return
  330. ;              2 ==> time out occurred
  331. ;              3 ==> user typed ^C
  332. ;
  333.     MVI    B,0        ; Character counter
  334.     MOV    A,B        ; Initialize space flag
  335.     STA    SPFLAG
  336. CRLOOP:
  337.     MOV    D,C        ; Initialize count down timer
  338. CRL05:
  339.     PUSH    B        ; Save character counter
  340.     PUSH    D        ; Save time out count down
  341.     PUSH    H        ; Save buffer pointer
  342.     MVI    C,CHEKCC    ; See if user typed ^C
  343.     CALL    MEX
  344.     JZ    UABORT        ; If yes, jump to user abort code
  345.     MVI    C,INMDM        ; Else, continue
  346.     CALL    MEX        ; Get char in 1ms if available
  347.     POP    H        ; Restore working registers
  348.     POP    D
  349.     POP    B
  350.     JC    NOCHAR        ; If no char in 1ms, handle it
  351.     ANI    7FH        ; Mask any parity bit
  352.     CPI    LF        ; End of line from modem ?
  353.     JZ    EOL        ; If <lf> then end of line
  354.     CPI    ' '        ; End of "DIALING:  "
  355.     JZ    CRSPC        ; Handle space character
  356.     JC    CRLOOP        ; Ignore control characters
  357.     CPI    'z'+1        ; Nothing above lower case alpha's
  358.     JNC    CRLOOP
  359.     MOV    M,A        ; Here we have a valid character
  360.     INX    H        ;  so save it and bump pointer
  361.     INR    B        ; Increment character counter also
  362.     JMP    CRLOOP        ; Go get the next one
  363.  
  364. ;
  365. ; Handle no character from modem in 1ms
  366. ;
  367. NOCHAR:
  368.     DCR    D        ; Decrement time out counter
  369.     JNZ    CRL05        ; If not to zero, wait some more
  370.     MOV    C,B        ; Else, return with what we have now
  371.     MVI    A,2        ; Time-out error code
  372.     RET
  373. ;
  374. ; End of line from modem
  375. ;
  376. EOL:
  377.     MOV    C,B        ; Character count
  378.     XRA    A        ; Return zero
  379.     RET
  380. ;
  381. ; Handle space character, two in a row means the end of the
  382. ;  modem response "DIALING:  ".
  383. ;
  384. CRSPC:
  385.     LDA    SPFLAG        ; Get space flag
  386.     ORA    A
  387.     JNZ    EOL        ; This must be the second one in a row
  388.     CMA            ; Otherwise, set the flag, it is the
  389.     STA    SPFLAG        ;  first one, flag it
  390.     JMP    CRLOOP        ; Loop for more characters
  391. ;
  392. ; User abort from ^C
  393. ;
  394. UABORT:
  395.     CALL    IDLE        ; Force disconnect
  396.     POP    H        ; Since these are still on the stack
  397.     POP    D
  398.     POP    B
  399.     MOV    C,B        ; Count of characters up to now
  400.     MVI    A,3        ; User abort code
  401.     RET
  402.  
  403. ;
  404. ; Sends a string of characters pointed to by HL terminated by zero
  405. ;
  406. RVSEND:
  407.     PUSH    H        ; Save memory pointer
  408. RV05:
  409.     MVI    C,SNDRDY    ; Get modem send status
  410.     CALL    MEX
  411.     JNZ    RV05        ; Wait for modem ready
  412.     MVI    B,1        ; Wait 1ms for modem software uart
  413.     MVI    C,TIMER
  414.     CALL    MEX
  415.     POP    H        ; Restore pointer
  416.     MOV    A,M        ; Get character
  417.     INX    H        ; Point to next character
  418.     ORA    A        ; Is this the terminator ?
  419.     RZ            ; If yes, done
  420.     MOV    B,A        ; Pass character in B
  421.     MVI    C,SNDCHR    ; Let MEX send to modem
  422.     CALL    MEX
  423.     JMP    RVSEND
  424.  
  425. ;
  426. ; DATA AREA
  427. ;
  428. WAKEUP:    DB    'E'-40H,CR,0    ; String to wake up modem
  429. IDLCMD:    DB    'I',CR,0    ; Idle command
  430. DCMD:    DB    'D',0        ; Dial command to modem
  431. CRMSG:    DB    CR,0        ; Note, this is end of DCMD
  432. SPFLAG:    DS    1        ; Space flag for catch response routine
  433. BDFLAG:    DS    1        ; True for 450 or 600 baud
  434. BDSAVE:    DS    1        ; Save for MSPEED code for 450 or 600
  435. RESPBF:    DS    20        ; Response from modem
  436. DIALBF:    DS    30        ; Phone number buffer
  437. DIALPT:    DS    2        ;DIAL POSITION POINTER
  438. ;
  439.     END
  440.