博客
关于我
汇编语言程序,求出这两个数组中数据的个数
阅读量:367 次
发布时间:2019-03-04

本文共 1956 字,大约阅读时间需要 6 分钟。

???????????????

????

??????????????10??????M????????????P?????N?????????????????


???

; ?????data segment    M dw 1,-3,32,4,31,42,-53,53,-12,34    P dw 10 dup (?)   ; ?????????10???    N dw 10 dup (?)   ; ?????????10???    countp db 30h      ; ??????    countn db 30h      ; ??????data ends; ?????code segment    assume cs:code, ds:datastart:    mov ax, data    mov ds, ax    mov cx, 10        ; ????    xor bx, bx        ; ???????bx    xor si, si        ; ???????si    xor di, di        ; ???????dis:    mov ax, M[bx]     ; ??????M???    cmp ax, 0        ; ???????0    jge s1           ; ??????????????    ; ??????????????s1:    mov P[di], ax     ; ?????????P    add di, 2        ; ??di??2???????    add countp, 1    ; ?????1    jmp nextnext:    add bx, 2        ; ????bx??2???????    loop ss:    mov ax, M[bx]     ; ??????M???    cmp ax, 0        ; ???????0    jge s1           ; ??????????????    ; ??????????????s1:    mov N[di], ax     ; ?????????N    add di, 2        ; ??di??2???????    add countn, 1    ; ?????1    jmp nextnext:    add bx, 2        ; ????bx??2???????    loop s; ????    mov ah, 2        ; ?????????    mov dl, countp   ; ??????    int 21h         ; ???????    mov ah, 2        ; ?????????    mov dl, 20h     ; ????    int 21h         ; ????    mov ah, 2        ; ?????????    mov dl, countn   ; ??????    int 21h         ; ???????    mov ax, 4c00h    ; ????    int 21h         ; ????code endsend start

????

  • ???

    • M ?????????1, -3, 32, 4, 31, 42, -53, 53, -12, 34
    • P ? N ????????????
    • countp ? countn ?????????????
  • ???

    • ????????????????
    • ?? mov ax, data ? mov ds, ax ??????????
    • ???? cx ????10???????10????
    • bx ?????????????
  • ??????

    • s ? s1 ???????????
    • ????jge s1????? P ?????????? N ????
    • ?? di ????????????????????
    • countp ? countn ?????????????
  • ????

    • ?? int 21h ????????????????????????????
  • ????

    • ?? mov ax, 4c00h ?????int 21h ???????

  • ????

    • ???????? M ?????????? P ? N ????
    • ??????????????????
    • ?????????????????????

    ??????????????????????????????

    转载地址:http://ctyg.baihongyu.com/

    你可能感兴趣的文章
    python | Python文本处理中的相似性识别应用
    查看>>
    python | Python模块缓存:sys.modules机制
    查看>>
    python | Python集成学习和随机森林算法
    查看>>
    python | Python高阶函数与函数式编程
    查看>>
    python | pytime,一个实用的 时间和日期处理 Python 库!
    查看>>
    python | pyupgrade,一个有趣的 Python 库!
    查看>>
    python | pyvips,一个神奇的 图像处理 Python 库
    查看>>
    Python | qutip,一个高级的 Python 库!
    查看>>
    python | rapidjson,一个实用的 提高JSON处理效率 Python 库!
    查看>>
    python | reflex,一个无敌的 Python 库!
    查看>>
    python | reloading,一个强大的 Python 库!
    查看>>
    python | rich,一个无敌的 Python 库!
    查看>>
    python | rlax,一个超强的 强化学习领域 Python 库!
    查看>>
    python | rpyc,一个超实用的 Python 库!
    查看>>
    python | rq,一个无敌的 关于Redis 的Python 库!
    查看>>
    python读取字符串指定位置字符_python要怎么截取指定位置的字符串呢?
    查看>>
    python | scikit-llm,一个神奇的 Python 库!
    查看>>
    python | sentry,一个超酷的 关于错误监控工具 Python 库!
    查看>>
    python | shiv,一个超酷的 打包工具 Python 库!
    查看>>
    python | six,一个神奇的 Python 库!
    查看>>