Using assembly language Write a program to add 8F301C and 8A
Using assembly language Write a program to add 8F301C and 8ADF9. Store the numbers starting from 0x300 memory location. The sum of the numbers will be stored starting from 0x0210 memory location.
Solution
MOV AX,CF;Move the carry flag value to AX
MOV[0303],AX;Carry value
code ends
