文件名称:汇编加法多位加法程序加显示
文件大小:410B
文件格式:ASM
更新时间:2013-12-30 12:02:49
鹅鹅鹅
多位加法程序sum db 6 dup(?),'$' data ends code segment assume cs:code,ds:data,es:data start:mov ax,data mov ds,ax mov es,ax mov si,4 lea di,sum+5 mov cx,5 l2:mov ah,0 mov al,add1[si] add al,add2[si]