Tutorials on Programming for microprocessor 8086
- Addition of two 8 BIT numbers:-
MOV SI,2000h ---
MOV DI,3000h
MOV AL,[SI]
INC SI
MOV BL,[SI]
ADD AL,BL
MOV [DI],AL
HLT