我是大神哥哥 发表于 2017-7-31 17:39:14

1.14代码分析

    assume cs:code;描述有哪些段
   
    code segment    ;code段开始
    mov bx,0      ;初始化bx
    mov cx,12       ;12传输到cx,cx寄存器用于计次
   
s:mov ax,0ffffh   ;0ffffh传输到寄存器ax
    mov ds,ax       ;ax寄存器的值传输到ds
    mov dl,   ;(dl)=((ds)*16+(bx)),将ffff:bx中的数据送入dl
   
    mov ax,0020h    ;0020h传输到ax寄存器
    mov ds,ax       ;ax寄存器的值传输到ds
    mov ,dl   ;((ds)*16+(bx))=(dl),将中dl的数据送入0020:bx
   
    inc bx          ;bx加1
    loop s          ;循环标号s处
   
    mov ax,4c00h    ;程序返回
    int 21h         ;中断
   
    code ends       ;code段结束
    end             ;结束
页: [1]
查看完整版本: 1.14代码分析