Academics
Microprocessor 8085 Code to add 2 data from the memory
Write a microprocessor 8085 program to add the content of memory location 2065H and 2066H and store the result in the next memory location. Mnemonics LXI H,2065 MOV A,M INX H ADD M INX H MOV M,A HLT Machine code for the above mnemonics 21 65 20 7E 23 86 Read more…