home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s140 / 1.img / FILE1.ASM < prev    next >
Encoding:
Assembly Source File  |  1989-05-01  |  6.1 KB  |  241 lines

  1. title   ASMtool Sample Source File
  2.  
  3. dosseg
  4.  
  5. .model small
  6.  
  7. .code
  8.  
  9. EXTRN edit_warning             : near
  10. EXTRN insert_blank_line        : near
  11. EXTRN adjust_line_misspellings : near
  12.  
  13. ;--------------------------------------------------------------------
  14. ; These code samples show the flow charting and tree diagram features 
  15. ; of ASMtool
  16. ;
  17. ; NOTE: include files deleted, this file will not assemble
  18. ;--------------------------------------------------------------------
  19.  
  20. PUBLIC join_lines
  21. join_lines PROC near
  22.  
  23.               push   cx
  24.               push   dx
  25.               push   si
  26.               push   di
  27.  
  28.               mov    ax, bp
  29.               sar    ax, 1
  30.               inc    ax
  31.               cmp    ax, edit_num_lines
  32.               jl     jl_0
  33.               jmp    jl_x
  34. jl_0:
  35.               mov    dx, ds:edit_line_nc[bp]
  36.               sub    dx, eol_nc
  37.               add    dx, ds:edit_line_nc[bp+2]
  38.               cmp    dx, max_line_length
  39.               jle    jl_1
  40.               mov    al, .ew_join_ln_max_len
  41.               call   edit_warning
  42.               jmp    jl_x
  43. jl_1:
  44.               mov    cx, ds:edit_line_nc[bp+2]
  45.               push   cx                       ; save num chars next line
  46.               push   ax                       ; save next line number
  47.               mov    dx, 0
  48.               mul    max_line_length
  49.               mov    si, ax                   ; offset to start next line
  50.               mov    di, bx
  51. jl_loop_1:
  52.               mov    al, edit_buffer[si]
  53.               mov    edit_buffer[di], al
  54.               inc    si
  55.               inc    di
  56.               loop   jl_loop_1
  57.  
  58. ; adjust misspelling ptrs for joined line
  59.  
  60.               push   bp
  61.               add    bp, 2
  62.               mov    dx, ds:edit_line_nc[bp-2]
  63.               sub    dx, eol_nc
  64.               sub    dx, max_line_length      ; amount to add (neg so subtract)
  65.               call   adjust_line_misspellings
  66.               pop    bp
  67.  
  68. ; delete next line
  69.  
  70.               pop    ax                       ; next line number
  71.               call   delete_edit_line
  72.  
  73. ; update number characters for joined line
  74.  
  75.               pop    cx                       ; num chars line appended
  76.               add    cx, ds:edit_line_nc[bp]
  77.               sub    cx, eol_nc               ; eol chars are overlayed
  78.               mov    ds:edit_line_nc[bp], cx
  79.  
  80. ; update display from joined line to last line
  81.  
  82.               mov    ax, bp
  83.               sar    ax, 1
  84.               mov    cx, edit_num_lines
  85.               sub    cx, ax
  86.               inc    cx
  87. jl_loop_3:
  88.               call   edit_line_out
  89.               inc    ax
  90.               loop   jl_loop_3
  91. jl_x:
  92.               pop    di
  93.               pop    si
  94.               pop    dx
  95.               pop    cx
  96.               ret
  97.  
  98. join_lines ENDP
  99.  
  100.  
  101. PUBLIC break_current_line
  102. break_current_line PROC
  103.  
  104.               push   cx
  105.               push   dx
  106.               push   di
  107.               push   si
  108.  
  109.               mov    dx, 0
  110.               mov    ax, bx
  111.               div    max_line_length
  112.               mov    cx, ds:edit_line_nc[bp]
  113.               sub    cx, dx
  114.               cmp    cx, eol_nc
  115.               jg     bcl_0
  116.               mov    al, .ew_brk_line_aft_eol
  117.               call   edit_warning
  118.               jmp    bcl_x
  119.  
  120. bcl_0:
  121.              push    ax
  122.              mov     ax, edit_num_lines
  123.              cmp     ax, edit_max_num_lines
  124.              jl      bcl_1
  125.              pop     ax
  126.              mov     al, .ew_brk_line_max_ln
  127.              call    edit_warning
  128.              jmp     bcl_x
  129.  
  130. bcl_1:
  131.              mov     ax, bp
  132.              sar     ax, 1
  133.              inc     ax
  134.              call    insert_blank_line
  135.  
  136.              pop     ax
  137.              push    dx
  138.              mov     ds:edit_line_nc[bp+2], cx
  139.              add     dx, eol_nc
  140.              mov     ds:edit_line_nc[bp], dx
  141.              inc     ax
  142.              mul     max_line_length
  143.              mov     di, ax                  ; offset to start next line
  144.              mov     si, bx
  145.              pop     dx
  146.              push    ax                      ; save offset to next line
  147. bcl_loop_1:
  148.              mov     al, edit_buffer[si]
  149.              mov     edit_buffer[si], ' '
  150.              mov     edit_buffer[di], al
  151.              inc     si
  152.              inc     di
  153.              loop    bcl_loop_1
  154.  
  155. ;      update offsets for misspellings on new line
  156.  
  157.              mov     ax, max_line_length
  158.              sub     ax, dx
  159.              mov     dx, ax
  160.              call    adjust_line_misspellings
  161.              call    join_lines
  162.  
  163. ;      add eol characters to end of current line
  164. ;      update cursor position to start of next line
  165.  
  166.              mov     cx, eol_nc
  167.              mov     si, 0
  168.              mov     di, bx
  169. bcl_loop_2:
  170.              mov     al, eol_chars[si]
  171.              mov     edit_buffer[di], al
  172.              inc     si
  173.              inc     di
  174.              loop    bcl_loop_2
  175.              pop     bx                    ; saved offset to start next line
  176.  
  177. ;  update display from current line to end of edit lines
  178.  
  179.              mov     ax, bp
  180.              sar     ax, 1
  181.              mov     cx, edit_num_lines
  182.              sub     cx, ax
  183. bcl_loop_3:
  184.              call    edit_line_out
  185.              inc     ax
  186.              loop    bcl_loop_3
  187. bcl_x:
  188.              call    join_lines
  189.              ret
  190.              pop     si
  191.              pop     di
  192.              pop     dx
  193.              pop     cx
  194.              ret
  195.  
  196. break_current_line ENDP
  197.  
  198.  
  199. ; demo of more complex branching for flow chart
  200.  
  201. orphan proc near
  202.  
  203.        push cx
  204.  
  205.        mov  cx, 10
  206.        cmp  ax, -1
  207. top1:
  208.        je   down1
  209.        cmp  ax, 0
  210. up1:
  211.        jc   down1
  212.        je   down2
  213.        inc  ax
  214.        jz   down3
  215.        inc  ax
  216.        jz   down1
  217.        inc  cx
  218. down1:
  219.        cmp  cx, 2
  220.        jc   down2
  221.        je   up1
  222.        inc  ax
  223.        jz   down2
  224.        jc   down3
  225.        add  ax, bx
  226. down2:
  227.        jc   down4
  228.        inc  cx
  229. down3:
  230.        loop top1
  231. up2:
  232.        ret
  233.        ret
  234. down4:
  235.        jmp  up2
  236.  
  237. orphan endp
  238.  
  239.          end
  240. 
  241.