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.
我读过 8085 中的累加器是一个 8 位寄存器。那么下面的指令怎么会是真的:
LDA address
其中地址是 LH 顺序的“16 位”地址
我们如何在 8 位寄存器中插入 16 位地址?
您不会在 8 位寄存器中插入 16 位地址,而是在 16 位指向的内存地址中插入字节。如果字节 30 存储在 @1234,LDA 1234 将 A 设置为 30。