I have a problem with this assembly program:
.model small
.code
start :
mov ax , [1100h]
mov bx , [1101h]
add ax , bx
JS Negative
JZ Nul
mov [2000h] , ax
JMP fin
Negative :
mov [3000h] , ax
JMP fin
Nul :
mov bx , ax
JMP fin
fin :
mov ax , 4c00h
int 21h
end start
please describe the problem you have with the code
once done that, delete these (bold) comments