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
23
77
76
Note: If you want to run the above code in 8085 microprocessor kit, only enter the machine code since it understands only machine code(Hex code) starting from memory address 2000H or what ever you want.
Academics Electronics
Matlab Code for Computer Exercise C8.6 Monson H. Hayes Statistical DSP
In this post, we will discuss Matlab Code for Computer Exercise C8.6 Monson H. Hayes Statistical Digital Signal Processing book. You can also refer the question below. The output of matlab code simulation is available Read more…
0 Comments