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 / MEX / MXO-SD10.ASM < prev    next >
Assembly Source File  |  2000-06-30  |  11KB  |  343 lines

  1.  
  2. ; MXO-SD10.ASM -- SIERRA DATA SCIENCES overlay file for MEX10.  03/29/85
  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 SIERRA DATA SCIENCES SBC-100 computer to MDM7xx.
  7. ;
  8. ; Edit this file for your preferences then follow the "TO USE:" example
  9. ; shown below.
  10. ;
  11. ; Use the "SET" command to change the baudrate when desired.  It starts
  12. ; out at 300 baud when the program is first called up.
  13. ;
  14. ;    TO USE: First edit this file filling in answers for your own
  15. ;        equipment.  Then assemble with ASM.COM or equivalent
  16. ;        assembler.  Then use MLOAD to overlay the the results
  17. ;        of this program to the original .COM file.
  18. ;
  19. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  20. ; 03/29/85 - Renamed MX0-SD10.ASM               - Leon Suchard
  21. ; 03/29/85 - Modified to work with SDS SBC-100  - Leon Suchard
  22. ; 05/24/84 - MEXified overlay            - Biff Bueffel
  23. ; 11/11/83 - Renamed to M7XE-1.ASM, no changes    - Irv Hoff
  24. ; 07/27/83 - Renamed to work with MDM712    - Irv Hoff
  25. ; 07/01/83 - Revised to work with MDM711    - Irv Hoff
  26. ; 06/22/83 - Revised to work with MDM710    - Irv Hoff
  27. ; 05/27/83 - Updated to work with MDM709    - Irv Hoff
  28. ; 05/15/83 - Revised to work with MDM708    - Irv Hoff
  29. ; 04/11/83 - Updated to work with MDM707    - Irv Hoff
  30. ; 04/04/83 - Updated to work with MDM706    - Irv Hoff
  31. ; 03/03/83 - Modified MDM705KP for XEROX
  32. ;         820-II computers with external
  33. ;         modems                - David Wurz    
  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. ;CHANGE PORT ASSIGNMENT TO CORRESPOND TO YOUR MODEM PORT - I USE
  70. ;SERIAL PORT B. --- L.S.
  71. ;
  72. PORT:        EQU    082H    ;SIERRA DATA SCIENCES port B     
  73. MODCTL1:    EQU    PORT+1        ;Modem control port
  74. MODDATP:    EQU    PORT        ;Modem data port
  75. MODCTL2:    EQU    PORT+1        ;Modem status port
  76. MODRCVB:    EQU    01H        ;Your bit to test for receive
  77. MODRCVR:    EQU    01H        ;Your value when receive ready
  78. MODSNDB:    EQU    04H        ;Your bit to test for send
  79. MODSNDR:    EQU    04H        ;Your value when send ready        
  80. ;
  81. ;
  82.         ORG    100H
  83. ;
  84. ;
  85. ; Change the clock speed to suit your system
  86. ;
  87.         DS    3    ;(for  "JMP   START" instruction)
  88. ;
  89. PMMIMODEM:    DB    NO    ;yes=PMMI S-100 Modem            103H
  90. SMARTMODEM:    DB    YES    ;yes=HAYES Smartmodem, no=non-PMMI    104H
  91. TOUCHPULSE:    DB    'T'    ;T=touch, P=pulse (Smartmodem-only)    105H
  92. CLOCK:        DB    40    ;clock speed in MHz x10, 25.5 MHz max.    106H
  93.                 ;20=2 MHh, 37=3.68 MHz, 40=4 MHz, etc.
  94. MSPEED:        DB    5    ;0=110 1=300 2=450 3=600 4=710 5=1200    107H
  95.                 ;6=2400 7=4800 8=9600 9=19200 default
  96. BYTDLY:        DB    5    ;0=0 delay  1=10ms  5=50 ms - 9=90 ms    108H
  97.                 ;default time to send character in ter-
  98.                 ;minal mode file transfer for slow BBS.
  99. CRDLY:        DB    5    ;0=0 delay 1=100 ms 5=500 ms - 9=900 ms 109H
  100.                 ;default time for extra wait after CRLF
  101.                 ;in terminal mode file transfer
  102. NOOFCOL:    DB    5    ;number of DIR columns shown        10AH
  103. SETUPTST:    DB    YES    ;yes=user-added Setup routine        10BH
  104. SCRNTEST:    DB    NO    ;Cursor control routine         10CH
  105. ACKNAK:        DB    YES    ;yes=resend a record after any non-ACK    10DH
  106.                 ;no=resend a record after a valid NAK
  107. BAKUPBYTE:    DB    YES     ;yes=change any file same name to .BAK    10EH
  108. CRCDFLT:    DB    YES    ;yes=default to CRC checking        10FH
  109. TOGGLECRC:    DB    YES    ;yes=allow toggling of CRC to Checksum    110H
  110. CONVBKSP:    DB    NO    ;yes=convert backspace to rub        111H
  111. TOGGLEBK:    DB    YES    ;yes=allow toggling of bksp to rub    112H
  112. ADDLF:        DB    NO    ;no=no LF after CR to send file in    113H
  113.                 ;terminal mode (added by remote echo)
  114. TOGGLELF:    DB    YES    ;yes=allow toggling of LF after CR    114H
  115. TRANLOGON:    DB    NO    ;yes=allow transmission of logon    115H
  116.                 ;write logon sequence at location LOGON
  117. SAVCCP:        DB    YES    ;yes=do not overwrite CCP        116H
  118. LOCONEXTCHR:    DB    NO    ;yes=local command if EXTCHR precedes    117H
  119.                 ;no=external command if EXTCHR precedes
  120. TOGGLELOC:    DB    YES    ;yes=allow toggling of LOCONEXTCHR    118H
  121. LSTTST:        DB    NO     ;yes=printer available on printer port    119H
  122. XOFFTST:    DB    NO    ;yes=check for XOFF from remote    while    11AH
  123.                 ;sending a file in terminal mode
  124. XONWAIT:    DB    NO    ;yes=wait for XON after CR while    11BH
  125.                 ;sending a file in terminal mode
  126. TOGXOFF:    DB    YES    ;yes=allow toggling of XOFF checking    11CH
  127. IGNORCTL:    DB    YES    ;yes=CTL-chars above ^M not displayed    11DH
  128. EXTRA1:        DB    0    ;for future expansion            11EH
  129. EXTRA2:        DB    0    ;for future expansion            11FH
  130. BRKCHR:        DB    '@'-40H    ;^@ = Send a 300 ms. break tone        120H
  131. 20H
  132. NOCONNCT:    DB    'N'-40H    ;^N = Disconnect from the phone line    121H
  133. LOGCHR:        DB    'L'-40H    ;^L = Send logon            122H
  134. LSTCHR:        DB    'P'-40H    ;^P = Toggle printer            123H
  135. UNSAVE:        DB    'R'-40H    ;^R = Close input text buffer        124H
  136. TRANCHR:    DB    'T'-40H ;^T = Transmit file to remote        125H
  137. SAVECHR:    DB    'Y'-40H    ;^Y = Open input text buffer        126H
  138. EXTCHR:        DB    '^'-40H    ;^^ = Send next character        127H
  139. ;
  140. ;
  141.         DS    2        ;                128H
  142. IN$MODCTL1:    MVI    A,10H        ;channel 0, reset interrupts    12AH
  143.         OUT    MODCTL1
  144.         IN    MODCTL1        ;get the status bits
  145.         RET
  146.         DS    3
  147. ;
  148. OUT$MODDATP:    OUT    MODDATP ! RET    ;out modem data port        134H
  149.         DS    7
  150. IN$MODDATP:    IN    MODDATP ! RET    ;in modem data port        13EH
  151.         DS    7
  152. ANI$MODRCVB:    ANI    MODRCVB    ! RET    ;bit to test for receive ready    148H
  153. CPI$MODRCVR:    CPI    MODRCVR ! RET    ;value of receive bit when rdy    14BH
  154. ANI$MODSNDB:    ANI    MODSNDB    ! RET    ;bit to test for send ready    14EH
  155. CPI$MODSNDR:    CPI    MODSNDR    ! RET    ;value of send bit when ready    151H
  156.         DS    6        ;                154H
  157. OUT$MODCTL1:    OUT    MODCTL1    ! RET    ;out modem control port     15AH
  158. OUT$MODCTL2:    OUT    MODCTL2    ! RET    ;out modem status port        15DH
  159. ;
  160. ;
  161.         DS    2        ;Not used by MEX        160H
  162.         DS    6        ;                162H
  163. JMP$GOODBYE:    JMP    GOODBYE        ;                168H
  164. JMP$INITMOD:    JMP    INITMOD        ;go to user written routine    16BH
  165. JMP$NEWBAUD    JMP    NEWBAUD        ;Change baudrate        16EH
  166.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    171H
  167.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    174H
  168. JMP$SETUPR:    JMP    SETUPR        ;                177H
  169.         DS    3        ;                17AH
  170. JMP$SYSVER:    JMP    SYSVER        ;                17DH
  171. JMP$BREAK:    JMP    SENDBRK        ;                180H
  172. ;
  173. ;
  174. ; Do not change the following six lines.
  175. ;
  176. JMP$ILPRT:    DS    3        ;                183H
  177. JMP$INBUF    DS    3        ;                186H
  178. JMP$INLNCOMP:    DS    3        ;                189H
  179. JMP$INMODEM    DS    3        ;                18CH
  180. JMP$NXTSCRN:    DS    3        ;                18FH
  181. JMP$TIMER:    DS    3        ;                192H
  182. ;
  183. ;
  184. ; Clear sequences -- CLREOS is clear to end of screen, CLRSCRN is clear
  185. ; entire screen.  
  186. ;
  187. CLREOS:        LXI    D,EOSMSG
  188.         MVI    C,PRINT
  189.         CALL    MEX
  190.         RET            
  191. ;
  192. CLRSCRN:    LXI    D,CLSMSG
  193.         MVI    C,PRINT
  194.         CALL    MEX
  195.         RET            
  196. ;
  197. ;
  198. SYSVER:        MVI    C,ILP        ;                1A7H
  199.         CALL    MEX
  200.         DB    'Version for SIERRA DATA SCIENCES SBC-100'
  201.         DB    CR,LF,0
  202.         RET
  203. ;
  204. ;
  205. ; This routine allows a 300 ms. break tone to be sent to reset some
  206. ; time-shar computers.
  207. ;
  208. SENDBRK:  MVI    A,5
  209.       OUT    MODCTL1
  210.       MVI    A,0F8H        ;SEND A BREAK TONE
  211.       JMP    GOODBYE1
  212. ;.....
  213. ;
  214. ;
  215. ; This routine sends a 300 ms. break tone and sets DTR low for the same
  216. ; length of time to disconnect some modems such as the Bell 212A, etc.    
  217. ;
  218. GOODBYE:  MVI    A,5
  219.       OUT    MODCTL1        ;SEND TO THE STATUS PORT
  220.       MVI    A,68H        ;TURN OFF DTR
  221. ;
  222. GOODBYE1: OUT    MODCTL1
  223.       MVI    B,3        ;WAIT FOR 300 MS.
  224.       MVI    C,TIMER
  225.       CALL    MEX
  226.       MVI    A,5
  227.       OUT    MODCTL1
  228.       MVI    A,0E8H        ;RESTORE TO NORMAL, 8 BITS, DTR ON, ETC.
  229.       OUT    MODCTL1
  230.       RET
  231. ;.....
  232. ;
  233. ;    
  234. ; SDS - Z80SIO initialization -- sets CTC timer 00H for send and receive
  235. ; baudrate.
  236. ;
  237. INITMOD:  MVI    A,0        ;SELECT REGISTER
  238.       OUT    MODCTL1
  239.       MVI    A,18H        ;THROW OUT OF MODE
  240.       OUT    MODCTL1
  241.       MVI    A,14H        ;SELECT REGISTER
  242.       OUT    MODCTL1
  243.       MVI    A,044H        ;SET ASCII PARAMETERS
  244.       OUT    MODCTL1
  245.       MVI    A,03H        ;SELECT REG.
  246.       OUT    MODCTL1
  247.       MVI    A,0C1H        ;ENABLE RECEIVE
  248.       OUT    MODCTL1
  249.       MVI    A,05H        ;SELECT REG.
  250.       OUT    MODCTL1
  251.       MVI    A,0EAH        ;ENABLE SEND, 'DTR', 'RTS'
  252.       OUT    MODCTL1
  253. ;
  254. INITMOD1: MVI    A,1        ;DEFAULT TRANSFER TIME TO 300 BAUD
  255.       STA    MSPEED
  256.       MVI    A,047H        ;DEFAULT TO 300 BAUD
  257.       OUT    00H        ;SEND TO 'CTC' TIMER
  258. ;
  259. INITMOD2: MVI    A,05H        ;INITIALIZE TO 300 BAUD
  260.       OUT    00H
  261.       RET
  262. ;.....
  263. ;
  264. ;
  265. ; Setup routine to allow changing modem speed with the SET command.
  266. ;
  267. ;
  268. SETUPR:      MVI    C,SBLANK    ;Any arguments?
  269.       CALL    MEX
  270.       JC    TELL        ;If not, go display baud
  271.       LXI    D,CMDTBL
  272.       MVI    C,LOOKUP
  273.       CALL    MEX        ;Parse argument
  274.       PUSH    H        ;Save any parsed argument addrs on stack
  275.       RNC            ;If we have one, return to it
  276.       POP    H        ;Oops, input not found in table
  277.       MVI    C,ILP
  278.       CALL    MEX        ;Tell user input not valid
  279.       DB    CR,LF,'Only 300 or 1200 allowed on SET command',CR,LF,0
  280.       RET
  281. ;
  282. CMDTBL:      DB    '30','0'+80H
  283.       DW    OK300
  284.       DB    '120','0'+80H
  285.       DW    OK1200
  286.       DB    0
  287. ;
  288. TELL:      MVI    C,ILP
  289.       CALL    MEX        ;Print current baud rate
  290.       DB    CR,LF,'Baud rate is now: ',0
  291.       LDA    MSPEED
  292.       MVI    C,PRBAUD
  293.       CALL    MEX
  294.       RET
  295. ;
  296. ;
  297. OK300:      MVI    A,1
  298.       LHLD    BD300
  299.       JMP    LOADBD
  300. ;
  301. OK600:      MVI    A,3
  302.       LHLD    BD600
  303.       JMP    LOADBD
  304. ;
  305. OK1200:      MVI    A,5
  306.       LHLD    BD1200
  307.       JMP    LOADBD
  308. ;
  309. OK9600:      MVI    A,8
  310.       LHLD    BD9600
  311. ;
  312. LOADBD:      STA    INITMOD1+1    ;CHANGE TIME-TO-SEND TO MATCH BAUDRATE
  313.       MOV    A,L        ;GET BAUDRATE BYTE
  314.       STA    INITMOD2+1    ;SEND TO 'CTC' TIMER FOR NEW BAUDRATE
  315.       JMP    INITMOD1    ;REINITIALIZE TO NEW BAUDRATE, THEN DONE
  316. ;
  317. ;
  318. NEWBAUD:  CPI    1
  319.       JZ    OK300
  320.       CPI    5
  321.       JZ    OK1200
  322.       RET
  323. ;
  324. ;
  325. ; TABLE OF BAUDRATE PARAMETERS
  326. ;
  327. BD300:      DW    0005H
  328. BD600:      DW    0006H    
  329. BD1200:      DW    0007H
  330. BD9600:      DW    000EH
  331. ;
  332. BAUDBUF:  DB    10,0
  333.       DS    10
  334. ;
  335. EOSMSG:      DB    0,0,0,0,'$'              
  336. CLSMSG:      DB    0,0,0,0,'$'
  337. ;
  338. ; NOTE:  MUST TERMINATE PRIOR TO 0B00H (with Smartmodem)
  339. ;                 0D00H (without Smartmodem)
  340. ;
  341.       END
  342. ;
  343.