Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请解释这怎么可能?
两者都是无用的指令MOV A,A,MOV M,M因为它们不执行任何有用的计算。8085的内部架构设计为最多一个操作数可以是M(一个内存位置)。因此MOV M,M在设计选择上是无效的。MOV R,R然而,为了简化设计,允许在 {A,B,C,D,E,H,L} 中使用 R等指令。在某些情况下,此类指令可能对实现繁忙的循环很有用。
MOV A,A
MOV M,M
MOV R,R