home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol169 / m7lo-1.aqm / M7LO-1.ASM
Assembly Source File  |  1985-02-09  |  10KB  |  339 lines

  1.  
  2. ; M7LO-1.ASM -- Lobo Max-80 overlay file for MDM7xx.  11/11/83
  3. ;
  4. ; This overlay adapts the MDM7xx program to Max-80 computers from Lobo.
  5. ; You will want to look this file over carefully.  There are a number of
  6. ; options that you can use to configure the program to suit your taste.
  7. ; This file places particular emphasis on using an external modem that
  8. ; does not match one of the other special overlays.
  9. ;
  10. ; If using the Hayes Smartmodem, switch SW6 should normally be down.  If
  11. ; for any reason you must have it up, then use the Lobo XCONFIG.COM to
  12. ; to disable the hardware and sofware handshaking on the RS-232C ports.
  13. ;
  14. ; Edit this file for your preferences then follow the "TO USE:" example
  15. ; shown below.
  16. ;
  17. ;    TO USE: First edit this file filling in answers for your own
  18. ;        equipment.  Then assemble with ASM.COM or equivalent
  19. ;        assembler.  Then use DDT to overlay the the results
  20. ;        of this program to the original .COM file:
  21. ;
  22. ;        A>DDT MDM7xx.COM
  23. ;        DDT VERS 2.2
  24. ;        NEXT  PC
  25. ;        4300 0100
  26. ;        -IM7LO-1.HEX        (note the "I" command)
  27. ;        -R            ("R" loads in the .HEX file)
  28. ;        NEXT  PC
  29. ;        4300 0000
  30. ;        -G0            (return to CP/M)
  31. ;        A>SAVE 66 MDM7xx.COM    (now have a modified .COM file)
  32. ;
  33. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  34. ;
  35. ; 11/11/83 - Renamed to M7LO-1.ASM, no changes    - Irv Hoff
  36. ; 10/07/83 - Revised to include modem break    - Steven J. Davidson
  37. ; 08/22/83 - Revised to work with Max-80    - Larry Richards
  38. ; 07/27/83 - Revised to work with MDM712    - Irv Hoff
  39. ; 04/04/83 - 1st version of M712GP        - Irv Hoff
  40. ;
  41. ; =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  42. ;
  43. BELL:        EQU    07H        ;bell
  44. CR:        EQU    0DH        ;carriage return
  45. ESC:        EQU    1BH        ;escape
  46. LF:        EQU    0AH        ;linefeed
  47. ;
  48. YES:        EQU    0FFH
  49. NO:        EQU    0
  50. ;
  51. ;
  52. ; Change the following information to match your equipment
  53. ;
  54. PORT:        EQU    0F7E4H        ;MAX-80 data port
  55. MODCTL1:    EQU    PORT+1        ;modem control port MAX-80
  56. MODDATP:    EQU    PORT        ;modem data in port
  57. MODDATO:    EQU    PORT        ;modem data out port
  58. MODDCDB:    EQU    4        ;carrier detect bit
  59. MODDCDA:    EQU    0        ;value when active
  60. BAUDRP:        EQU    0F7D0H        ;baud rate port MAX-80
  61. MODCTL2:    EQU    PORT+1        ;2nd modem control port
  62. MODRCVB:    EQU    1        ;bit to test for receive
  63. MODRCVR:    EQU    1        ;value when ready
  64. MODSNDB:    EQU    4        ;bit to test for send
  65. MODSNDR:    EQU    4        ;value when ready
  66. ;
  67.         ORG    100H
  68. ;
  69. ;
  70. ; Change the clock speed to suit your system
  71. ;
  72.         DS    3    ;(for  "JMP   START" instruction)
  73. ;
  74. PMMIMODEM:    DB    NO    ;yes=PMMI S-100 Modem            103H
  75. SMARTMODEM:    DB    NO    ;yes=HAYES Smartmodem, no=non-PMMI    104H
  76. TOUCHPULSE:    DB    'T'    ;T=touch, P=pulse (Smartmodem-only)    105H
  77. CLOCK:        DB    50    ;clock speed in MHz x10, 25.5 MHz max.    106H
  78.                 ;20=2 MHh, 37=3.68 MHz, 40=4 MHz, etc.
  79. MSPEED:        DB    1    ;0=110 1=300 2=450 3=600 4=710 5=1200    107H
  80.                 ;6=2400 7=4800 8=9600 9=19200 default
  81. BYTDLY:        DB    5    ;0=0 delay  1=10ms  5=50 ms - 9=90 ms    108H
  82.                 ;default time to send character in ter-
  83.                 ;minal mode file transfer for slow BBS.
  84. CRDLY:        DB    5    ;0=0 delay 1=100 ms 5=500 ms - 9=900 ms 109H
  85.                 ;default time for extra wait after CRLF
  86.                 ;in terminal mode file transfer
  87. NOOFCOL:    DB    5    ;number of DIR columns shown        10AH
  88. SETUPTST:    DB    YES    ;yes=user-added Setup routine        10BH
  89. SCRNTEST:    DB    YES    ;Cursor control routine         10CH
  90. ACKNAK:        DB    YES    ;yes=resend a record after any non-ACK    10DH
  91.                 ;no=resend a record after a valid-NAK
  92. BAKUPBYTE:    DB    NO    ;yes=change any file same name to .BAK    10EH
  93. CRCDFLT:    DB    YES    ;yes=default to CRC checking        10FH
  94. TOGGLECRC:    DB    YES    ;yes=allow toggling of CRC to Checksum    110H
  95. CONVBKSP:    DB    NO    ;yes=convert backspace to rub        111H
  96. TOGGLEBK:    DB    NO    ;yes=allow toggling of bksp to rub    112H
  97. ADDLF:        DB    NO    ;no=no LF after CR to send file in    113H
  98.                 ;terminal mode (added by remote echo)
  99. TOGGLELF:    DB    YES    ;yes=allow toggling of LF after CR    114H
  100. TRANLOGON:    DB    YES    ;yes=allow transmission of logon    115H
  101.                 ;write logon sequence at location LOGON
  102. SAVCCP:        DB    YES    ;yes=do not overwrite CCP        116H
  103. LOCONEXTCHR:    DB    NO    ;yes=local command if EXTCHR precedes    117H
  104.                 ;no=external command if EXTCHR precedes
  105. TOGGLELOC:    DB    YES    ;yes=allow toggling of LOCONEXTCHR    118H
  106. LSTTST:        DB    YES    ;yes=printer available on printer port    119H
  107. XOFFTST:    DB    NO    ;yes=checks for XOFF from remote while    11AH
  108.                 ;sending a file in terminal mode
  109. XONWAIT:    DB    NO    ;yes=wait for XON after CR while    11BH
  110.                 ;sending a file in terminal mode
  111. TOGXOFF:    DB    YES    ;yes=allow toggling of XOFF checking    11CH
  112. IGNORCTL:    DB    YES    ;yes=CTL-chars above ^M not displayed    11DH
  113. EXTRA1:        DB    0    ;for future expansion            11EH
  114. EXTRA2:        DB    0    ;for future expansion            11FH
  115. BRKCHR:        DB    '@'-40H    ;^@ = Send 300 ms. break tone        120H
  116. NOCONNCT:    DB    'N'-40H    ;^N = Disconnect from the phone line    121H
  117. LOGCHR:        DB    'L'-40H    ;^L = Send logon            122H
  118. LSTCHR:        DB    'P'-40H    ;^P = Toggle printer            123H
  119. UNSAVE:        DB    'R'-40H    ;^R = Close input text buffer        124H
  120. TRANCHR:    DB    'T'-40H ;^T = Transmit file to remote        125H
  121. SAVECHR:    DB    'Y'-40H    ;^Y = Open input text buffer        126H
  122. EXTCHR:        DB    '^'-40H    ;^^ = Send next character        127H
  123. ;
  124. ;
  125.         DS    2        ;                128H
  126. ;
  127. IN$MODCTL1:    LDA    MODCTL1 ! RET    ;in modem control port MAX-80    12AH
  128.         DS    6
  129. OUT$MODDATP:    STA    MODDATP ! RET    ;out modem data port MAX-80    134H
  130.         DS    6
  131. IN$MODDATP:    LDA    MODDATP ! RET    ;in modem data port MAX-80    13EH
  132.         DS    6
  133. ANI$MODRCVB:    ANI    MODRCVB    ! RET    ;bit to test for receive ready    148H
  134.  
  135. CPI$MODRCVR:    CPI    MODRCVR    ! RET    ;value of rcv. bit when ready    14BH
  136. ANI$MODSNDB:    ANI    MODSNDB    ! RET    ;bit to test for send ready    14EH
  137. CPI$MODSNDR:    CPI    MODSNDR    ! RET    ;value of send bit when ready    151H
  138.         DS    6        ;                156H
  139. ;
  140. OUT$MODCTL1:    NOP  !    NOP        ;out modem control port #2    15AH
  141. OUT$MODCTL2:    LDA    MODCTL2    ! RET    ;out modem control port #1    15DH
  142. ;
  143. LOGONPTR:    DW    LOGON        ;for user message.        160H
  144.         DS    6        ;                162H
  145. JMP$GOODBYE:    JMP    GOODBYE        ;                168H
  146. JMP$INITMOD:    JMP    INITMOD        ;go to user written routine    16BH
  147.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    16EH
  148.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    171H
  149.         RET  !    NOP  !    NOP    ;(by-passes PMMI routine)    174H
  150. JMP$SETUPR:    JMP    SETUPR        ;                177H
  151. JMP$SPCLMENU:    JMP    SPCLMENU    ;                17AH
  152. JMP$SYSVER:    JMP    SYSVER        ;                17DH
  153. JMP$BREAK:    JMP    SENDBRK        ;                180H
  154. ;
  155. ;
  156. ; Do not change the following six lines.
  157. ;
  158. JMP$ILPRT:    DS    3        ;                183H
  159. JMP$INBUF    DS    3        ;                186H
  160. JMP$INLNCOMP:    DS    3        ;                189H
  161. JMP$INMODEM    DS    3        ;                18CH
  162. JMP$NXTSCRN:    DS    3        ;                18FH
  163. JMP$TIMER    DS    3        ;                192H
  164. ;
  165. ;
  166. ; Routine to clear to end of screen.
  167. ;
  168. ;
  169. CLREOS:        CALL    JMP$ILPRT    ;                195H
  170.         DB    1BH,59H,0,0,0    ;                198H
  171.         RET            ;                19DH
  172. ;
  173. CLRSCRN:    CALL    JMP$ILPRT    ;                19EH
  174.         DB    1BH,2AH,0,0,0    ;                1A1H
  175.         RET            ;                1A6H
  176.     
  177. ;
  178. SYSVER:        CALL    JMP$ILPRT    ;                1A7H
  179.         DB    'Version for Lobo Max-80',CR,LF,0
  180.         RET
  181. ;.....
  182. ;
  183. ;
  184. ;-----------------------------------------------------------------------
  185. ;
  186. ; NOTE:  You can change the SYSVER message to be longer or shorter.  The
  187. ;     end of your last routine should terminate by 0400H (601 bytes
  188. ;     available after start of SYSVER) if using the Hayes Smartmodem
  189. ;     or by address 0C00H (2659 bytes) otherwise.
  190. ;
  191. ;-----------------------------------------------------------------------
  192. ;
  193. ; You can put in a message at this location which can be called up with
  194. ; CTL-O if TRANLOGON has been set TRUE.  You can use several lines if
  195. ; desired.  End with a 0.
  196. ;
  197. LOGON:      DB    'Hello from a Lobo MAX-80 computer',CR,LF,0
  198. ;.....
  199. ;
  200. ;
  201. ; This routine allows a 300 ms. break tone to be sent to reset some
  202. ; time-share computers.
  203. ;
  204. SENDBRK:  MVI    A,5
  205.       STA    MODCTL1
  206.       MVI    A,0F8H        ;send a break tone
  207.       JMP    GOODBYE1
  208. ;.....
  209. ;
  210. ;
  211. ; This routine sends a 300 ms. break tone and/or sets DTR low for the
  212. ; same length of time to disconnect some modems such as the Bell 212A,
  213. ; etc.    The second entry (GOODBYE1) just sends the modem break, needed
  214. ; to "alert" some timesharing services.
  215. ;
  216. ;
  217. GOODBYE:  MVI    A,5
  218.       STA    MODCTL1        ;send to the status port
  219.       MVI    A,68H        ;turn off dtr
  220. ;
  221. GOODBYE1: STA    MODCTL1
  222.       MVI    B,3        ;wait for 300 ms.
  223.       CALL    JMP$TIMER
  224.       MVI    A,5
  225.       STA    MODCTL1
  226.       MVI    A,0E8H        ;restore to normal, 8 bits, dtr on, etc.
  227.       STA    MODCTL1
  228.       RET
  229. ;.......
  230. ;
  231. ;
  232. ; Uses the initialization already established by CP/M BIOS on a reboot.
  233. ;
  234. INITMOD:  RET
  235. ;.....
  236. ;
  237. ;
  238. SETUPR:      LXI    D,BAUDBUF    ;point to new buffer
  239.       CALL    JMP$ILPRT
  240.       DB    'Input baud rate (300, 600, 1200, 2400, 4800, '
  241.       DB    '9600 or 19200):',0
  242.       CALL    JMP$INBUF
  243.       LXI    D,BAUDBUF+2    ;past the 2 size bytes
  244.       CALL    JMP$INLNCOMP
  245.       DB    '300',0
  246.       JNC    OK300        ;see if 300 baud
  247.       CALL    JMP$INLNCOMP
  248.       DB    '600',0
  249.       JNC    OK600        ;see if 600 baud
  250.       CALL    JMP$INLNCOMP
  251.       DB    '1200',0
  252.       JNC    OK1200        ;see if 1200 baud
  253.       CALL    JMP$INLNCOMP
  254.       DB    '2400',0
  255.       JNC    OK2400        ;see if 2400 baud
  256.       CALL    JMP$INLNCOMP
  257.       DB    '4800',0
  258.       JNC    OK4800        ;see if 4800 baud
  259.       CALL    JMP$INLNCOMP
  260.       DB    '9600',0
  261.       JNC    OK9600        ;see if 9600 baud
  262.       CALL    JMP$INLNCOMP
  263.       DB    '19200',0
  264.       JNC    OK19200        ;see if 19200 baud
  265.       CALL    JMP$ILPRT    ;both matches failed
  266.       DB    '++  INCORRECT ENTRY ++',CR,LF,BELL,0
  267.       JMP    SETUPR        ;try again
  268. ;.....
  269. ;
  270. ;
  271. OK300:      MVI    A,1        ;for 300 baud
  272.       MVI    B,5
  273.       JMP    SAVEALL
  274. ;...
  275. ;
  276. ;
  277. OK600:      MVI    A,3        ;for 600 baud
  278.       MVI    B,6
  279.       JMP    SAVEALL
  280. ;...
  281. ;
  282. ;
  283. OK1200:      MVI    A,5        ;for 1200 baud
  284.       MVI    B,7
  285.       JMP    SAVEALL
  286. ;...
  287. ;
  288. ;
  289. OK2400:      MVI    A,6        ;for 2400 baud
  290.       MVI    B,10
  291.       JMP    SAVEALL
  292. ;...
  293. ;
  294. ;
  295. OK4800:      MVI    A,7        ;for 4800 baud
  296.       MVI    B,12
  297.       JMP    SAVEALL
  298. ;...
  299. ;
  300. ;
  301. OK9600:      MVI    A,8        ;for 9600 baud
  302.       MVI    B,14
  303.       JMP    SAVEALL
  304. ;...
  305. ;
  306. ;
  307. OK19200:  MVI    A,9        ;for 19200 baud
  308.       MVI    B,15
  309.       JMP    SAVEALL
  310. ;...
  311. ;
  312. ;
  313. SAVEALL:  STA    MSPEED
  314.       MOV    A,B
  315.       STA    BAUDRP
  316.       RET
  317. ;.....
  318. ;
  319. ;
  320. BAUDBUF:  DB    10,0
  321.       DS    10
  322. ;.....
  323. ;
  324. ;
  325. ; If using the Hayes Smartmodem this is unavailable without a special
  326. ; change.
  327. ;
  328. SPCLMENU:  RET
  329. ;
  330. ;
  331. ; NOTE:  Must terminate prior to 0400H (with Smartmodem)
  332. ;                 0C00H (without Smartmodem)
  333. ;.....
  334. ;
  335.       END
  336. ;
  337.       JNC    OK19200        ;see if 19200 baud
  338.       CALL    JMP$ILPRT    ;both matches failed
  339.