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 ?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top