Home » 8085 Microprocessor » 8085 microprocessor miscellaneous » Question

8085 microprocessor miscellaneous

8085 Microprocessor

  1. An input device is interfaced with Intel 8085A microprocessor as memory mapped I /O. The address of the device is 2500H. In order to input data from the device to accumul at or, the sequence of instructions will be
    1. LXIH,2500H
      MOVA,M
    2. LXIH,2500H
      MOVM,A
    3. LHLD2500H
      MOVA,M
    4. LHLD2500H
      MOVM,A
Correct Option: A

L × 1 H, 2500H: the data 2500H is loaded into HL pair
MOV A,M: the content of memory location whose address is in HL pair, is moved to accumulator. So finally input data from device is moved to accumulator.



Your comments will be displayed only after manual approval.