.model small
.data
sum dw '?'
.code
start:
mov ax,@data
mov ds,ax
sub ax,ax
mov cx,64h
again:
add ax,cx
loop again
mov sum ,ax
ls:
mov ax,4c00h
int 21h
end start
.model small
.data
sum dw '?'
.code
start:
mov ax,@data
mov ds,ax
sub ax,ax
mov cx,64h
again:
add ax,cx
loop again
mov sum ,ax
ls:
mov ax,4c00h
int 21h
end start