home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l292 / 2.ddi / MISCIO.ASM < prev    next >
Encoding:
Assembly Source File  |  1989-10-13  |  14.7 KB  |  814 lines

  1. ;    Async driver for MS Fortran 5.0.    10/10/89
  2. ;       Written by Quinn-Curtis for use with their Science, Engineering
  3. ;       and Graphics Tools for MS FORTRAN
  4. ;       Originally written in MS C, compiled to an .ASM file, then
  5. ;       modified to remove MS C library calls.  Other minor changes
  6. ;       were made to make the module compatible with MS FORTRAN.  This
  7. ;       .ASM file should be compiled with MS MASM 5.x.
  8. ;
  9. ;
  10.     TITLE   MISCIO.c
  11.     NAME    MISCIO
  12.  
  13.     .8087
  14. MISCIO_TEXT    SEGMENT  WORD PUBLIC 'CODE'
  15. MISCIO_TEXT    ENDS
  16. _DATA    SEGMENT  WORD PUBLIC 'DATA'
  17. _DATA    ENDS
  18. CONST    SEGMENT  WORD PUBLIC 'CONST'
  19. CONST    ENDS
  20. _BSS    SEGMENT  WORD PUBLIC 'BSS'
  21. _BSS    ENDS
  22. DGROUP    GROUP    CONST, _BSS, _DATA
  23.     ASSUME  CS: MISCIO_TEXT, DS: DGROUP, SS: DGROUP
  24. PUBLIC  _com_flag
  25. _BSS      SEGMENT
  26. COMM NEAR    _overrun_flag:    BYTE:     2
  27. COMM NEAR    _com_buffer:    BYTE:     1000
  28. COMM NEAR    _com_port:    BYTE:     2
  29. COMM NEAR    _intlev:    BYTE:     2
  30. COMM NEAR    _buffer_in:    BYTE:     2
  31. COMM NEAR    _buffer_out:    BYTE:     2
  32. COMM NEAR    _buffer_length:    BYTE:     2
  33. COMM NEAR    _bf_hndshk:    BYTE:     2
  34. COMM NEAR    _thr:    BYTE:     2
  35. COMM NEAR    _rbr:    BYTE:     2
  36. COMM NEAR    _ier:    BYTE:     2
  37. COMM NEAR    _lcr:    BYTE:     2
  38. COMM NEAR    _mcr:    BYTE:     2
  39. COMM NEAR    _lsr:    BYTE:     2
  40. COMM NEAR    _msr:    BYTE:     2
  41. COMM NEAR    _hndshk:    BYTE:     2
  42. COMM NEAR    _oldfunc:    BYTE:     4
  43. _BSS      ENDS
  44. _DATA      SEGMENT
  45. _com_flag    DW    00H
  46. _DATA      ENDS
  47. CONST      SEGMENT
  48. $T20000    DW SEG _rbr 
  49. $T20001    DW SEG _buffer_in 
  50. $T20002    DW SEG _com_buffer 
  51. $T20003    DW SEG _buffer_length 
  52. $T20004    DW SEG _overrun_flag 
  53. $T20005    DW SEG _mcr
  54. $T20006    DW SEG _bf_hndshk
  55. CONST      ENDS
  56. MISCIO_TEXT      SEGMENT
  57.     ASSUME    CS: MISCIO_TEXT
  58.     PUBLIC    _com_isr
  59. _com_isr    PROC FAR
  60.     push    ax
  61.     push    cx
  62.     push    dx
  63.     push    bx
  64.     push    sp
  65.     push    bp
  66.     push    si
  67.     push    di
  68.     push    ds
  69.     push    es
  70.     mov    bp,sp
  71.     sub    sp,2
  72.     mov    ax,DGROUP
  73.     mov    ds,ax
  74.     ASSUME DS: DGROUP
  75.     cld
  76.     cmp    WORD PTR _com_flag,1
  77.     je    $JCC26
  78.     jmp    $I249
  79. $JCC26:
  80.     mov    es,$T20000
  81.     mov    ax,WORD PTR es:_rbr
  82.     mov    WORD PTR [bp-2],ax
  83.     mov    dx,ax
  84.     in    al,dx
  85.     mov    es,$T20001
  86.     mov    bx,WORD PTR es:_buffer_in
  87.     mov    es,$T20002
  88.     mov    BYTE PTR es:_com_buffer[bx],al
  89.     mov    es,$T20001
  90.     inc    WORD PTR es:_buffer_in
  91.     cmp    WORD PTR es:_buffer_in,1000
  92.     jne    $I247
  93.     mov    WORD PTR es:_buffer_in,0
  94. $I247:
  95.     mov    es,$T20003
  96.     inc    WORD PTR es:_buffer_length
  97.     cmp    WORD PTR es:_buffer_length,1000
  98.     jle    $I248
  99.     mov    WORD PTR es:_buffer_length,1000
  100.     mov    es,$T20004
  101.     mov    WORD PTR es:_overrun_flag,1
  102. $I248:
  103.     mov    es,$T20003
  104.     cmp    WORD PTR es:_buffer_length,900
  105.     jle    $I249
  106.     mov    es,$T20005
  107.     mov    ax,WORD PTR es:_mcr
  108.     mov    WORD PTR [bp-2],ax
  109.     mov    ax,9
  110.     mov    dx,WORD PTR [bp-2]
  111.     out    dx, al
  112.  
  113.     mov    es,$T20006
  114.     mov    WORD PTR es:_bf_hndshk,1
  115. $I249:
  116.     mov    ax,32
  117.     out    32, al
  118.  
  119.     mov    sp,bp
  120.     pop    es
  121.     pop    ds
  122.     ASSUME DS: DGROUP
  123.     pop    di
  124.     pop    si
  125.     pop    bp
  126.     pop    bx
  127.     pop    bx
  128.     pop    dx
  129.     pop    cx
  130.     pop    ax
  131.     iret    
  132.  
  133. _com_isr    ENDP
  134. MISCIO_TEXT      ENDS
  135. CONST      SEGMENT
  136. $T20007    DW SEG _buffer_out 
  137. CONST      ENDS
  138. MISCIO_TEXT      SEGMENT
  139.     ASSUME    CS: MISCIO_TEXT
  140.     PUBLIC    _reset_buffer
  141. _reset_buffer    PROC FAR
  142.     mov    es,$T20006
  143.     mov    WORD PTR es:_bf_hndshk,0
  144.     mov    es,$T20001
  145.     mov    WORD PTR es:_buffer_in,0
  146.     mov    es,$T20007
  147.     mov    WORD PTR es:_buffer_out,0
  148.     mov    es,$T20003
  149.     mov    WORD PTR es:_buffer_length,0
  150.     mov    es,$T20004
  151.     mov    WORD PTR es:_overrun_flag,0
  152.     ret
  153.  
  154. _reset_buffer    ENDP
  155. MISCIO_TEXT      ENDS
  156. CONST      SEGMENT
  157. $T20008    DW SEG _com_port 
  158. $T20009    DW SEG _hndshk
  159. $T20011    DW SEG _thr 
  160. $T20012    DW SEG _ier 
  161. $T20013    DW SEG _lcr
  162. $T20014    DW SEG _lsr
  163. $T20015    DW SEG _msr
  164. $T20016    DW SEG _intlev
  165. $T20017    DW SEG _oldfunc 
  166. CONST      ENDS
  167. MISCIO_TEXT      SEGMENT
  168.     ASSUME    CS: MISCIO_TEXT
  169.     PUBLIC    _open_com
  170. _open_com    PROC FAR
  171.     push    bp
  172.     mov    bp,sp
  173.     sub    sp,6
  174. ;    numbits = 14
  175. ;    handshake = 16
  176. ;    error_code = 18
  177. ;    comdata = -4
  178. ;    ptemp = -2
  179. ;    Cport = 6
  180. ;    baud = 8
  181. ;    parity = 10
  182. ;    stopbits = 12
  183.     les    bx,DWORD PTR [bp+18]    ;error_code
  184.     mov    WORD PTR es:[bx],0
  185.     mov    es,$T20008
  186.     mov    ax,WORD PTR [bp+6]    ;Cport
  187.     mov    WORD PTR es:_com_port,ax
  188.     mov    WORD PTR [bp-4],0    ;comdata
  189.     cmp    WORD PTR [bp+14],7    ;numbits
  190.     je    $I264
  191.     cmp    WORD PTR [bp+14],8    ;numbits
  192.     jne    $I263
  193. $I264:
  194.     mov    ax,WORD PTR [bp+14]    ;numbits
  195.     sub    ax,5
  196.     or    WORD PTR [bp-4],ax    ;comdata
  197.     jmp    SHORT $I265
  198.     nop    
  199. $I263:
  200.     les    bx,DWORD PTR [bp+18]    ;error_code
  201.     mov    WORD PTR es:[bx],5
  202. $I265:
  203.     cmp    WORD PTR [bp+12],2    ;stopbits
  204.     je    $I267
  205.     cmp    WORD PTR [bp+12],1    ;stopbits
  206.     jne    $I266
  207. $I267:
  208.     mov    ax,WORD PTR [bp+12]    ;stopbits
  209.     shl    ax,1
  210.     shl    ax,1
  211.     sub    ax,4
  212.     or    WORD PTR [bp-4],ax    ;comdata
  213.     jmp    SHORT $I268
  214.     nop
  215. $I266:
  216.     les    bx,DWORD PTR [bp+18]    ;error_code
  217.     mov    WORD PTR es:[bx],4
  218. $I268:
  219.     cmp    WORD PTR [bp+10],1    ;parity
  220.     je    $I270
  221.     cmp    WORD PTR [bp+10],3    ;parity
  222.     je    $I270
  223.     cmp    WORD PTR [bp+10],0    ;parity
  224.     jne    $I269
  225. $I270:
  226.     mov    ax,WORD PTR [bp+10]    ;parity
  227.     mov    cl,3
  228.     shl    ax,cl
  229.     or    WORD PTR [bp-4],ax    ;comdata
  230.     jmp    SHORT $I271
  231. $I269:
  232.     les    bx,DWORD PTR [bp+18]    ;error_code
  233.     mov    WORD PTR es:[bx],3
  234. $I271:
  235.     mov    es,$T20009
  236.     mov    ax,WORD PTR [bp+16]    ;handshake
  237.     mov    WORD PTR es:_hndshk,ax
  238.     mov    ax,WORD PTR [bp+8]    ;baud
  239.     cmp    ax,600
  240.     jne    $JCC393
  241.     jmp    $SC279
  242. $JCC393:
  243.     jle    $JCC398
  244.     jmp    $L20010
  245. $JCC398:
  246.     cmp    ax,110
  247.     je    $SC276
  248.     cmp    ax,150
  249.     je    $SC277
  250.     cmp    ax,300
  251.     jne    $JCC416
  252.     jmp    $SC278
  253. $JCC416:
  254.     jmp    $SD284
  255. $SC277:
  256.     or    BYTE PTR [bp-4],32    ;comdata
  257. $SC276:
  258.     cmp    WORD PTR [bp+6],0    ;Cport
  259.     jl    $I286
  260.     cmp    WORD PTR [bp+6],1    ;Cport
  261.     jle    $I285
  262. $I286:
  263.     les    bx,DWORD PTR [bp+18]    ;error_code
  264.     mov    WORD PTR es:[bx],1
  265. $I285:
  266.     les    bx,DWORD PTR [bp+18]    ;error_code
  267.     cmp    WORD PTR es:[bx],0
  268.     jne    $I287
  269.        sub ax,ax
  270.        mov dx, WORD PTR [bp+6]
  271.        mov ax, WORD PTR [bp-4]
  272.        int 14H
  273.  
  274. $I287:
  275.     cmp    WORD PTR [bp+6],0    ;Cport
  276.     je    $JCC478
  277.     jmp    $I289
  278. $JCC478:
  279.     mov    es,$T20011
  280.     mov    WORD PTR es:_thr,1016
  281.     mov    es,$T20000
  282.     mov    WORD PTR es:_rbr,1016
  283.     mov    es,$T20012
  284.     mov    WORD PTR es:_ier,1017
  285.     mov    es,$T20013
  286.     mov    WORD PTR es:_lcr,1019
  287.     mov    es,$T20005
  288.     mov    WORD PTR es:_mcr,1020
  289.     mov    es,$T20014
  290.     mov    WORD PTR es:_lsr,1021
  291.     mov    es,$T20015
  292.     mov    WORD PTR es:_msr,1022
  293.     jmp    $I290
  294.     nop    
  295. $SC278:
  296.     or    BYTE PTR [bp-4],64    ;comdata
  297.     jmp    $SC276
  298.     nop    
  299. $SC279:
  300.     or    BYTE PTR [bp-4],96    ;comdata
  301.     jmp    $SC276
  302.     nop
  303. $SC280:
  304.     or    BYTE PTR [bp-4],128    ;comdata
  305.     jmp    $SC276
  306.     nop    
  307. $SC281:
  308.     or    BYTE PTR [bp-4],160    ;comdata
  309.     jmp    $SC276
  310.     nop    
  311. $SC282:
  312.     or    BYTE PTR [bp-4],192    ;comdata
  313.     jmp    $SC276
  314.     nop    
  315. $SC283:
  316.     or    BYTE PTR [bp-4],224    ;comdata
  317.     jmp    $SC276
  318.     nop
  319. $L20010:
  320.     cmp    ax,1200
  321.     je    $SC280
  322.     cmp    ax,2400
  323.     je    $SC281
  324.     cmp    ax,4800
  325.     je    $SC282
  326.     cmp    ax,9600
  327.     je    $SC283
  328. $SD284:
  329.     les    bx,DWORD PTR [bp+18]    ;error_code
  330.     mov    WORD PTR es:[bx],2
  331.     jmp    $SC276
  332.     nop
  333. $I289:
  334.     mov    es,$T20011
  335.     mov    WORD PTR es:_thr,760
  336.     mov    es,$T20000
  337.     mov    WORD PTR es:_rbr,760
  338.     mov    es,$T20012
  339.     mov    WORD PTR es:_ier,761
  340.     mov    es,$T20013
  341.     mov    WORD PTR es:_lcr,763
  342.     mov    es,$T20005
  343.     mov    WORD PTR es:_mcr,764
  344.     mov    es,$T20014
  345.     mov    WORD PTR es:_lsr,765
  346.     mov    es,$T20015
  347.     mov    WORD PTR es:_msr,766
  348. $I290:
  349.     mov    es,$T20016
  350.     mov    ax,12
  351.     sub    ax,WORD PTR [bp+6]    ;Cport
  352.     mov    WORD PTR es:_intlev,ax
  353.  
  354.         mov     ah, 35H
  355.         int     21H
  356.         mov     ax,es
  357.  
  358.     mov    es,$T20017
  359.     mov    WORD PTR es:_oldfunc,bx
  360.     mov    WORD PTR es:_oldfunc+2,ax
  361.         mov     dx, offset _com_isr
  362.         mov     bx, seg _com_isr
  363.         mov     es, $T20016
  364.         mov     ax, WORD PTR es:_intlev
  365.         mov     ah, 25H
  366.         push    ds
  367.         mov     ds,bx
  368.         int     21H
  369.         pop     ds
  370.     cli
  371.     mov    es,$T20013
  372.     mov    ax,WORD PTR es:_lcr
  373.     mov    WORD PTR [bp-6],ax
  374.     mov    dx,ax
  375.     in    al,dx
  376.     sub    ah,ah
  377.     and    ax,127
  378.     mov    WORD PTR [bp-2],ax    ;ptemp
  379.     out    dx, al
  380.  
  381.     mov    es,$T20014
  382.     mov    ax,WORD PTR es:_lsr
  383.     mov    WORD PTR [bp-6],ax
  384.     mov    dx,ax
  385.     in    al,dx
  386.     sub    ah,ah
  387.     mov    WORD PTR [bp-2],ax    ;ptemp
  388.     mov    es,$T20000
  389.     mov    ax,WORD PTR es:_rbr
  390.     mov    WORD PTR [bp-6],ax
  391.     mov    dx,ax
  392.     in    al,dx
  393.     sub    ah,ah
  394.     mov    WORD PTR [bp-2],ax    ;ptemp
  395.     cmp    WORD PTR [bp+6],0    ;Cport
  396.     jne    $I291
  397.     in    al,33
  398.     and    ax,239
  399.     jmp    SHORT $L20018
  400.     nop    
  401. $I291:
  402.     in    al,33
  403.     sub    ah,ah
  404.     and    ax,247
  405. $L20018:
  406.     mov    WORD PTR [bp-2],ax    ;ptemp
  407.     out    33, al
  408.  
  409.     mov    es,$T20012
  410.     mov    ax,WORD PTR es:_ier
  411.     mov    WORD PTR [bp-6],ax
  412.     mov    ax,1
  413.     mov    dx,WORD PTR [bp-6]
  414.     out    dx, al
  415.  
  416.     mov    es,$T20005
  417.     mov    ax,WORD PTR es:_mcr
  418.     mov    WORD PTR [bp-6],ax
  419.     mov    dx,ax
  420.     in    al,dx
  421.     sub    ah,ah
  422.     or    al,11
  423.     mov    WORD PTR [bp-2],ax    ;ptemp
  424.     out    dx, al
  425.  
  426.     sti
  427.     les    bx,DWORD PTR [bp+18]    ;error_code
  428.     mov    WORD PTR es:[bx],0
  429.     mov    WORD PTR _com_flag,1
  430.     push    cs
  431.     call    _reset_buffer
  432.     mov    sp,bp
  433.     pop    bp
  434.     ret    
  435.     nop    
  436.  
  437. _open_com    ENDP
  438.     PUBLIC    _close_com
  439. _close_com    PROC FAR
  440.     push    bp
  441.     mov    bp,sp
  442.     sub    sp,4
  443. ;    ptemp = -2
  444.     cmp    WORD PTR _com_flag,1
  445.     jne    $I296
  446.     cli
  447.     in    al,33
  448.     sub    ah,ah
  449.     or    al,24
  450.     mov    WORD PTR [bp-2],ax    ;ptemp
  451.     out    33, al
  452.  
  453.     mov    es,$T20013
  454.     mov    ax,WORD PTR es:_lcr
  455.     mov    WORD PTR [bp-4],ax
  456.     mov    dx,ax
  457.     in    al,dx
  458.     sub    ah,ah
  459.     or    al,127
  460.     mov    WORD PTR [bp-2],ax    ;ptemp
  461.     out    dx, al
  462.  
  463.     mov    es,$T20012
  464.     mov    ax,WORD PTR es:_ier
  465.     mov    WORD PTR [bp-4],ax
  466.     sub    ax,ax
  467.     mov    dx,WORD PTR [bp-4]
  468.     out    dx, al
  469.  
  470.     mov    es,$T20005
  471.     mov    ax,WORD PTR es:_mcr
  472.     mov    WORD PTR [bp-4],ax
  473.     sub    ax,ax
  474.     mov    dx,WORD PTR [bp-4]
  475.     out    dx, al
  476.  
  477.         mov     dx, word ptr es:_oldfunc
  478.         mov     bx, word ptr es:_oldfunc+2
  479.         mov     es, $T20016
  480.         mov     ax, word ptr es:_intlev
  481.         mov     ah, 25H
  482.         push    ds
  483.         mov     ds,bx
  484.         int     21H
  485.         pop     ds
  486.  
  487.     sti
  488.     mov    WORD PTR _com_flag,0
  489. $I296:
  490.     mov    sp,bp
  491.     pop    bp
  492.     ret
  493.     nop
  494.  
  495. _close_com    ENDP
  496.     PUBLIC    _check_com
  497. _check_com    PROC FAR
  498.     push    bp
  499.     mov    bp,sp
  500.     sub    sp,2
  501. ;    c = 6
  502. ;    error_code = 10
  503.     cmp    WORD PTR _com_flag,0
  504.     jne    $I301
  505.     les    bx,DWORD PTR [bp+10]    ;error_code
  506.     mov    WORD PTR es:[bx],10
  507.     mov    sp,bp
  508.     pop    bp
  509.     ret
  510.     nop
  511. $I301:
  512.     mov    es,$T20003
  513.     cmp    WORD PTR es:_buffer_length,0
  514.     jne    $I303
  515.     les    bx,DWORD PTR [bp+10]    ;error_code
  516.     mov    WORD PTR es:[bx],6
  517.     mov    sp,bp
  518.     pop    bp
  519.     ret
  520. $I303:
  521.     mov    es,$T20004
  522.     cmp    WORD PTR es:_overrun_flag,1
  523.     jne    $I305
  524.     les    bx,DWORD PTR [bp+10]    ;error_code
  525.     mov    WORD PTR es:[bx],7
  526.     jmp    SHORT $I306
  527. $I305:
  528.     les    bx,DWORD PTR [bp+10]    ;error_code
  529.     mov    WORD PTR es:[bx],0
  530. $I306:
  531.     mov    es,$T20007
  532.     mov    bx,WORD PTR es:_buffer_out
  533.     mov    es,$T20002
  534.     mov    al,BYTE PTR es:_com_buffer[bx]
  535.     les    bx,DWORD PTR [bp+6]    ;c
  536.     mov    BYTE PTR es:[bx],al
  537.     mov    es,$T20007
  538.     inc    WORD PTR es:_buffer_out
  539.     cmp    WORD PTR es:_buffer_out,1000
  540.     jne    $I307
  541.     mov    WORD PTR es:_buffer_out,0
  542. $I307:
  543.     mov    es,$T20003
  544.     dec    WORD PTR es:_buffer_length
  545.     mov    es,$T20006
  546.     cmp    WORD PTR es:_bf_hndshk,0
  547.     je    $I308
  548.     mov    es,$T20003
  549.     cmp    WORD PTR es:_buffer_length,100
  550.     jge    $I308
  551.     mov    es,$T20005
  552.     mov    ax,WORD PTR es:_mcr
  553.     mov    WORD PTR [bp-2],ax
  554.     mov    ax,11
  555.     mov    dx,WORD PTR [bp-2]
  556.     out    dx, al
  557.  
  558.     mov    es,$T20006
  559.     mov    WORD PTR es:_bf_hndshk,0
  560. $I308:
  561.     mov    sp,bp
  562.     pop    bp
  563.     ret    
  564.     nop    
  565.  
  566. _check_com    ENDP
  567.     PUBLIC    _send_com
  568. _send_com    PROC FAR
  569.     push    bp
  570.     mov    bp,sp
  571.     sub    sp,10
  572. ;    c = 6
  573. ;    error_code = 8
  574. ;    handshake = -6
  575. ;    counter = -4
  576.     cmp    WORD PTR _com_flag,0
  577.     jne    $I315
  578.     les    bx,DWORD PTR [bp+8]    ;error_code
  579.     mov    WORD PTR es:[bx],10
  580.     mov    sp,bp
  581.     pop    bp
  582.     ret
  583.     nop
  584. $I315:
  585.     sub    ax,ax
  586.     mov    WORD PTR [bp-2],ax
  587.     mov    WORD PTR [bp-4],ax    ;counter
  588.     mov    es,$T20009
  589.     mov    ax,WORD PTR es:_hndshk
  590.     mov    WORD PTR [bp-6],ax    ;handshake
  591. $D317:
  592.     add    WORD PTR [bp-4],1    ;counter
  593.     adc    WORD PTR [bp-2],0
  594.     mov    es,$T20015
  595.     mov    ax,WORD PTR es:_msr
  596.     mov    WORD PTR [bp-8],ax
  597.     mov    dx,ax
  598.     in    al,dx
  599.     sub    ah,ah
  600.     and    ax,WORD PTR [bp-6]    ;handshake
  601.     cmp    ax,WORD PTR [bp-6]    ;handshake
  602.     jne    $D317
  603.     mov    es,$T20014
  604.     mov    ax,WORD PTR es:_lsr
  605.     mov    WORD PTR [bp-10],ax
  606.     mov    dx,ax
  607.     in    al,dx
  608.     and    al,32
  609.     cmp    al,32
  610.     jne    $D317
  611.     cli
  612.     out    dx, al
  613.  
  614.     sti
  615.     les    bx,DWORD PTR [bp+8]    ;error_code
  616.     mov    WORD PTR es:[bx],0
  617.     mov    sp,bp
  618.     pop    bp
  619.     ret
  620.     nop
  621.  
  622. _send_com    ENDP
  623.     PUBLIC    _writeln_com
  624. _writeln_com    PROC FAR
  625.     push    bp
  626.     mov    bp,sp
  627.     sub    sp,2
  628.     push    si
  629. ;    str = 6
  630. ;    error_code = 10
  631. ;    i = -2
  632.     mov    WORD PTR [bp-2],0    ;i
  633.     les    bx,DWORD PTR [bp+6]    ;str
  634.     cmp    BYTE PTR es:[bx],0
  635.     je    $I325
  636. $D326:
  637.     push    WORD PTR [bp+12]
  638.     push    WORD PTR [bp+10]    ;error_code
  639.     mov    bx,WORD PTR [bp-2]    ;i
  640.     mov    si,WORD PTR [bp+6]    ;str
  641.     mov    al,es:[bx][si]
  642.     cbw
  643.     push    ax
  644. ;    push    cs
  645.     call    _send_com
  646.     add    sp,6
  647.     inc    WORD PTR [bp-2]    ;i
  648.     mov    bx,WORD PTR [bp-2]    ;i
  649.     les    si,DWORD PTR [bp+6]    ;str
  650.     cmp    BYTE PTR es:[bx][si],0
  651.     jne    $D326
  652.     push    WORD PTR [bp+12]
  653.     push    WORD PTR [bp+10]    ;error_code
  654.     mov    ax,13
  655.     push    ax
  656. ;    push    cs
  657.     call    _send_com
  658.     add    sp,6
  659. $I325:
  660.     pop    si
  661.     mov    sp,bp
  662.     pop    bp
  663.     ret
  664.  
  665. _writeln_com    ENDP
  666.  
  667.     PUBLIC    _readln_com
  668. _readln_com    PROC FAR
  669.     push    bp
  670.     mov    bp,sp
  671.     sub    sp,4
  672.     push    si
  673. ;    str = 6
  674. ;    error_code = 10
  675. ;    i = -4
  676. ;    c = -2
  677.     mov    WORD PTR [bp-4],0    ;i
  678. $D335:
  679.     push    WORD PTR [bp+12]
  680.     push    WORD PTR [bp+10]    ;error_code
  681.     lea    ax,WORD PTR [bp-2]    ;c
  682.     push    ss
  683.     push    ax
  684. ;    push    cs
  685.     call    _check_com
  686.     add    sp,8
  687.     les    bx,DWORD PTR [bp+10]    ;error_code
  688.     cmp    WORD PTR es:[bx],0
  689.     jne    $I338
  690.     mov    bx,WORD PTR [bp-4]    ;i
  691.     les    si,DWORD PTR [bp+6]    ;str
  692.     mov    al,BYTE PTR [bp-2]    ;c
  693.     mov    es:[bx][si],al
  694.     inc    WORD PTR [bp-4]    ;i
  695. $I338:
  696.     cmp    WORD PTR [bp-4],80    ;i
  697.     jge    $D339
  698.     cmp    BYTE PTR [bp-2],13    ;c
  699.     jne    $D335
  700.     dec    WORD PTR [bp-4]    ;       i backup to CR
  701. $D339:
  702.     mov    bx,WORD PTR [bp-4]    ;i
  703.     les    si,DWORD PTR [bp+6]    ;str
  704.     mov    BYTE PTR es:[bx][si],32 ; replace CR with a space
  705.     pop    si
  706.     mov    sp,bp
  707.     pop    bp
  708.     ret
  709.  
  710. _readln_com    ENDP
  711.  
  712.  
  713.     PUBLIC    _POC
  714. _POC    PROC FAR
  715.     push    bp
  716.     mov    bp,sp
  717.     sub    sp,2
  718. ;       port = 6
  719. ;       c = 8
  720. ;       status = 12
  721.  
  722.     sub    ax,ax
  723.         mov     al,BYTE PTR [bp+8] ;  al = c
  724.         mov     dx,WORD PTR [bp+6] ;  dx = port
  725.  
  726.         int     17H       ;  call printer I/O
  727.  
  728.     les    bx,DWORD PTR [bp+12]    ;
  729.     mov    BYTE PTR es:[bx],ah
  730.  
  731.     mov    sp,bp
  732.     pop    bp
  733.     ret
  734.  
  735. _POC    ENDP
  736.  
  737.     PUBLIC    _ReadKey
  738. _ReadKey PROC FAR
  739.     push    bp
  740.     mov    bp,sp
  741.     sub    sp,2
  742.  
  743. ;       char = 6
  744. ;       scancode = 10
  745.  
  746.     sub    ax,ax
  747.  
  748.         int     16H       ;  call keyboard I/O
  749.  
  750.     les    bx,DWORD PTR [bp+6]    ;
  751.     mov    BYTE PTR es:[bx],al
  752.  
  753.     les    bx,DWORD PTR [bp+10]    ;
  754.     mov    BYTE PTR es:[bx],ah
  755.  
  756.  
  757.     mov    sp,bp
  758.     pop    bp
  759.     ret
  760.  
  761. _ReadKey ENDP
  762.  
  763.     PUBLIC    _GotoXY
  764. _GotoXY    PROC FAR
  765.     push    bp
  766.     mov    bp,sp
  767.     sub    sp,2
  768. ;       x = 6
  769. ;       y = 8
  770.         sub     ax,ax
  771.         mov     al,BYTE PTR [bp+8] ;
  772.         sub     ax,1
  773.         mov     dh,al              ;  dh = row y
  774.  
  775.         sub     ax,ax
  776.         mov     al,BYTE PTR [bp+6] ;
  777.         sub     ax,1
  778.         mov     dl,al              ;  dl = col y
  779.  
  780.         sub     ax,ax
  781.         mov     bx,ax   ; page 0
  782.         mov     ah,2    ; position cursor
  783.         int     10H       ;  call screen I/O
  784.  
  785.     mov    sp,bp
  786.     pop    bp
  787.     ret
  788.  
  789. _GotoXY    ENDP
  790.  
  791.     PUBLIC    _WriteChar
  792. _WriteChar    PROC FAR
  793.     push    bp
  794.     mov    bp,sp
  795.     sub    sp,2
  796. ;       c = 6
  797.         sub     ax,ax
  798.         mov     al,BYTE PTR [bp+6] ;   c
  799.         mov     cx,1  ; count
  800.         mov     bx,0  ; page
  801.  
  802.         mov     ah,10    ; write char
  803.         int     10H      ;  call screen I/O
  804.  
  805.     mov    sp,bp
  806.     pop    bp
  807.     ret
  808.  
  809. _WriteChar    ENDP
  810.  
  811.  
  812. MISCIO_TEXT    ENDS
  813. END
  814.