I have read that in 8085 the accumulator is a 8 bit register. Then how come the following instruction be true :
LDA address
where address is a “16-bit” address in L-H order
How can we insert a 16 bit address in a 8 bit register ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t insert a 16 bit address in a 8 bit register, but the byte contained at the memory address where the 16 bit points.
If the byte 30 is stored at @1234, LDA 1234 sets A to 30.