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-AL11.ASM < prev    next >
Assembly Source File  |  2000-06-30  |  10KB  |  355 lines

  1. ; Overlay for the Altos 580 using the COMM 3 port.
  2. ;
  3. ; You will want to look this file over carefully. There are a number of
  4. ; options that you can use to configure the program to suit your taste.
  5. ; This file adapts the Altos 580 to MEX.
  6. ;
  7. ; Edit this file for your preferences then follow the "TO USE:" example
  8. ; shown below.
  9. ;
  10. ; Use the "SET" command to change the baudrate when desired.  It starts
  11. ; out at 1200 baud when the program is first called up.
  12. ;
  13. ;    TO USE: First edit this file filling in answers for your own
  14. ;        equipment.  Then assemble with ASM.COM or equivalent
  15. ;        assembler.  Then use MLOAD to overlay the the results
  16. ;        of this program to the original .COM file.
  17. ;
  18. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  19. ;  05/01/85    Changed to run with the Altos 580. Also added 2400
  20. ;        and 9600 baud.                   - Jeff king
  21. ;
  22. ;  04/28/85    MEXified overlay                       - Chris Heuser
  23. ;  10/22/84     Used Ampro overlay and changed
  24. ;           initmod addresses and other minor
  25. ;            equates to work with the MAGIC
  26. ;            computer PC-88.                        - Chris Heuser
  27. ;
  28. ;
  29. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  30. ;
  31. BELL:        EQU    07H        ;bell
  32. CR:        EQU    0DH        ;carriage return
  33. ESC:        EQU    1BH        ;escape
  34. LF:        EQU    0AH        ;linefeed
  35. ;
  36. YES:        EQU    0FFH
  37. NO:        EQU    0
  38. ;
  39. ; MEX service processor stuff
  40. ;
  41. MEX    EQU    0D00H        ;address of the service processor
  42. INMDM    EQU    255        ;get char from port to A, CY=no more in 100 ms
  43. TIMER    EQU    254        ;delay 100ms * reg B
  44. TMDINP    EQU    253        ;B=# secs to wait for char, cy=no char
  45. CHEKCC    EQU    252        ;check for ^C from KBD, Z=present
  46. SNDRDY    EQU    251        ;test for modem-send ready
  47. RCVRDY    EQU    250        ;test for modem-receive ready
  48. SNDCHR    EQU    249        ;send a character to the modem (after sndrdy)
  49. RCVCHR    EQU    248        ;recv a char from modem (after rcvrdy)
  50. LOOKUP    EQU    247        ;table search: see CMDTBL comments for info
  51. PARSFN    EQU    246        ;parse filename from input stream
  52. BDPARS    EQU    245        ;parse baud-rate from input stream
  53. SBLANK    EQU    244        ;scan input stream to next non-blank
  54. EVALA    EQU    243        ;evaluate numeric from input stream
  55. LKAHED    EQU    242        ;get nxt char w/o removing from input
  56. GNC    EQU    241        ;get char from input, cy=1 if none
  57. ILP    EQU    240        ;inline print
  58. DECOUT    EQU    239        ;decimal output
  59. PRBAUD    EQU    238        ;print baud rate
  60. ;
  61. PRINT    EQU    9        ;MEX/BDOS print-string function call
  62. ;
  63. ; Change the following information to match your equipment
  64. ;
  65. PORT:        EQU    1CH        ;MODEM DATA IN PORT
  66. MODCTL1        EQU    PORT+1        ;MODEM CONTROL PORT
  67. MODDATP:    EQU    PORT            ;MODEM DATA IN  COMM PORT 3 
  68. CTC:        EQU    0DH        ;ADDR. OF CTC PORT
  69. MODRCVB:    EQU    1        ;BIT TO TEST FOR RECEIVE
  70. MODRCVR:    EQU    1        ;VALUE WHEN READY
  71. MODSNDB:    EQU    4        ;BIT TO TEST FOR SEND
  72. MODSNDR:    EQU    4        ;VALUE WHEN READY
  73. ;
  74.         ORG    100H
  75. ;
  76. ;
  77. ; Change the clock speed to suit your system
  78. ;
  79.         DS    3    ;(for  "JMP   START" instruction)
  80. ;
  81. PMMIMODEM:    DB    NO    ;yes=PMMI S-100 Modem            103H
  82. SMARTMODEM:    DB    NO    ;yes=HAYES Smartmodem, no=non-PMMI    104H
  83. TOUCHPULSE:    DB    'T'    ;T=touch, P=pulse (Smartmodem-only)    105H
  84. CLOCK:        DB    40    ;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    5    ;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 any non-ACK    10DH
  98.                 ;no=resend a record after a valid NAK
  99. BAKUPBYTE:    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    YES    ;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    YES    ;yes=allow toggling of LF after CR    114H
  107. TRANLOGON:    DB    NO    ;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    119H
  114. XOFFTST:    DB    NO    ;yes=check 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 the 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    'W'-40H    ;^W = Send next character        127H
  130. ;
  131. ;
  132.         DS    2        ;                128H
  133. IN$MODCTL1:    IN      MODCTL1 ! RET   ;in modem control port          12AH
  134.         DS    7
  135. ;
  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    7
  140. ANI$MODRCVB:    ANI    MODRCVB    ! RET    ;bit to test for receive ready    148H
  141. CPI$MODRCVR:    CPI    MODRCVR ! RET    ;value of receive bit when rdy    14BH
  142. ANI$MODSNDB:    ANI    MODSNDB    ! RET    ;bit to test for send ready    14EH
  143. CPI$MODSNDR:    CPI    MODSNDR    ! RET    ;value of send bit when ready    151H
  144.         DS    12        ;                156H
  145. ;
  146. ;
  147.         DS    2        ;Not used by MEX        160H
  148.         DS    3        ;                162H
  149. DISCV:        JMP    ADISCV        ;Hang up modem wih DSC        165H                165H
  150. GOODBV:        JMP    AGOODBV        ;exit routine            168H
  151. INITMOD:    JMP    AINITMOD    ;go to user written routine    16BH
  152. NEWBVD:        JMP    ANEWBVD        ;Change baudrate        16EH
  153.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    171H
  154.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    174H
  155. JMP$SETUPR:    JMP    SETUPR        ;                177H
  156.         DS    3
  157. JMP$SYSVER:    JMP    SYSVER        ;                17DH
  158. JMP$BREAK:    JMP    SENDBRK        ;                180H
  159. ;
  160. ;
  161. ; Do not change the following six lines.
  162. ;
  163. JMP$ILPRT:    DS    3        ;                183H
  164. JMP$INBUF    DS    3        ;                186H
  165. JMP$INLNCOMP:    DS    3        ;                189H
  166. JMP$INMODEM    DS    3        ;                18CH
  167. JMP$NXTSCRN:    DS    3        ;                18FH
  168. JMP$TIMER:    DS    3        ;                192H
  169. ;
  170. ;
  171. ; Clear sequences -- CLREOS is clear to end of screen, CLRSCRN is clear
  172. ; entire screen.  
  173. ;
  174. CLREOS:        LXI    D,EOSMSG
  175.         MVI    C,PRINT
  176.         CALL    MEX
  177.         RET            
  178. ;
  179. CLRSCRN:    LXI    D,CLSMSG
  180.         MVI    C,PRINT
  181.         CALL    MEX
  182.         RET            
  183. ;
  184. ;
  185. SYSVER:        MVI    C,ILP        ;                1A7H
  186.         CALL    MEX
  187.         DB    'Version for ALTOS 580 COMPUTER '
  188.         DB    CR,LF,0
  189.         RET
  190. ;
  191. ;
  192. ; This routine allows a 300 ms. break tone to be sent to reset some
  193. ; time-shar computers.
  194. ;
  195. SENDBRK:  MVI    A,5
  196.       OUT    MODCTL1
  197.       MVI    A,0F8H        ;SEND A BREAK TONE
  198.       JMP    AGOODBV
  199. ;.....
  200. ;
  201. ;
  202. ; This routine sends a 500 ms. break tone and sets DTR low for the same
  203. ; length of time to disconnect some modems such as the Bell 212A, etc.    
  204. ;
  205. ADISCV:      MVI    A,5
  206.       OUT    MODCTL1        ;SEND TO THE STATUS PORT
  207.       MVI    A,68H        ;TURN OFF DTR
  208.       OUT    MODCTL1
  209.       JMP    AGOODBV
  210.       RET
  211. ;
  212. AGOODBV:  MVI    B,5        ;WAIT 500 MS
  213.       CALL    JMP$TIMER    
  214.       MVI    A,5
  215.       OUT    MODCTL1
  216.       MVI    A,0EAH        ;RESTORE TO NORMAL, 8 BITS, DTR ON, ETC.
  217.       OUT    MODCTL1
  218.       RET
  219. ;.....
  220. ;
  221. ;    
  222. ; Altos 580 initialization 
  223. ;
  224. AINITMOD:  DI            ;no interupts during setup
  225.       MVI    A,5    ;default transfer speed to 300 baud
  226.       STA    MSPEED     ;
  227.       MVI    A,04H    ;write register 4 of SIO 
  228.       OUT    MODCTL1    ;contol port
  229.       MVI    A,44H    ;x16, 1 stop bit, no parity
  230.       OUT    MODCTL1    ;    
  231.       MVI    A,03H    ;write register 3 of SIO
  232.       OUT     MODCTL1    ;
  233.       MVI    A,0C1H    ;rcv 8 bits/char, rcv enable
  234.       OUT    MODCTL1    ;
  235.       MVI    A,05H    ;write register 5 of SIO
  236.       OUT    MODCTL1    ;
  237.       MVI    A,0EAH    ;8 bits/char, tx enable, rts enable
  238.       OUT    MODCTL1    ;
  239.       MVI    A,47H    ;counter mode,contol word time constant follows
  240.       OUT    CTC    ;CTC channel 1
  241.       MVI    A,68h    ;
  242.       OUT    CTC    ;CTC channel 1
  243.       EI            ;
  244.           RET
  245. ;
  246. ;.....
  247. ;
  248. ;
  249. ; Setup routine to allow changing modem speed with the SET command.
  250. ;
  251. ;
  252. SETUPR:      MVI    C,SBLANK    ;Any arguments?
  253.       CALL    MEX
  254.       JC    TELL        ;If not, go display baud
  255.       LXI    D,CMDTBL
  256.       MVI    C,LOOKUP
  257.       CALL    MEX        ;Parse argument
  258.       PUSH    H        ;Save any parsed argument addrs on stack
  259.       RNC            ;If we have one, return to it
  260.       POP    H        ;Oops, input not found in table
  261.       MVI    C,ILP
  262.       CALL    MEX        ;Tell user input not valid
  263.       DB    CR,LF,'Only 300, 1200, 2400 or 9600 on SET command',CR,LF,0
  264.       RET
  265. ;
  266. CMDTBL:      DB    '30','0'+80H
  267.       DW    OK300
  268.       DB    '120','0'+80H
  269.       DW    OK1200
  270.       DB    '240','0'+80H
  271.       DW    OK2400
  272.       DB    '960','0'+80H
  273.       DW    OK9600
  274.       DB    0
  275. ;
  276. TELL:      MVI    C,ILP
  277.       CALL    MEX        ;Print current baud rate
  278.       DB    CR,LF,'Baud rate is now: ',0
  279.       LDA    MSPEED
  280.       MVI    C,PRBAUD
  281.       CALL    MEX
  282.       RET
  283. ;
  284. ;
  285. OK300:      MVI    A,1
  286.       STA    MSPEED
  287.       CALL    STBAUD1            
  288.       MVI    A,34H        ; Second byte value for CTC 
  289.       OUT    CTC
  290.       RET
  291. ;
  292. OK1200:      MVI    A,5
  293.       STA    MSPEED
  294.       CALL    SETBAUD
  295.       MVI    A,68h        ; Second byte value for CTC
  296.       OUT    CTC
  297.       RET
  298. ;
  299. OK2400:      MVI    A,6
  300.       STA    MSPEED
  301.       CALL  SETBAUD
  302.       MVI    A,34H        ; Second byte value for CTC
  303.       OUT     CTC
  304.       RET
  305. ;
  306. OK9600:      MVI    A,8
  307.       STA    MSPEED
  308.       CALL SETBAUD
  309.       MVI    A,0DH
  310.       OUT    CTC
  311.       RET
  312. ;
  313. ; This routne Sets up first byte for CTC (Counter mode)
  314. ;
  315. SETBAUD:  MVI    A,04H
  316.       OUT    MODCTL1
  317.       MVI    A,44H
  318.       OUT    MODCTL1
  319.       MVI    A,47H        ; Counter mode of CTC
  320.       OUT    CTC
  321.       RET
  322. ;
  323. ; This routine sets up first byte for CTC (Timer mode)
  324. STBAUD1:  MVI    A,04H
  325.       OUT    MODCTL1
  326.       MVI   A,44H
  327.       OUT   MODCTL1
  328.       MVI    A,07H        ; Timer mode of CTC
  329.       OUT    CTC
  330.       RET
  331. ;
  332. ANEWBVD:   CPI    1
  333.       JZ    OK300
  334.       CPI    5
  335.       JZ    OK1200
  336.       CPI    6
  337.       JZ    OK2400
  338.       CPI    8
  339.       JZ    OK9600
  340.       RET
  341. ;
  342. ;
  343. BAUDBUF:  DB    10,0
  344.       DS    10
  345. ;
  346. EOSMSG:      DB    27,74,0,0,'$'              ;KTM2 Clear EOS
  347. CLSMSG:      DB    27,69,0,0,'$'            ;KTM2 Clear Screen
  348. ;
  349. ; NOTE:  MUST TERMINATE PRIOR TO 0B00H (with Smartmodem)
  350. ;                 0D00H (without Smartmodem)
  351. ;
  352.       END
  353. ;
  354.