How do you get the input in assembly language using 8086 microprocessor for addition?

1 answer

Answer

1284411

2026-05-07 18:40

+ Follow

Code segment
assume cs:code
mov si,1500h
mov di,1600h
mov ax,[si]
mov bx,[si+2]
add ax,bx
mov [di],ax
mov [di+2],dx
mov ah,4ch
int 21h
code ends
end

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.