You are on page 1of 2

ADDITION

code segment
assume cs:code,ds:code
org 1000h
mov ax,2222h
mov bx,1111h
add ax,bx
mov si,1200h
mov [si],ax
mov ah,4ch
int 21h
code ends
end

You might also like