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.
编写汇编程序指令来构建一个表来保存大写字母 AZ 的 ASCII 代码。该表应该存储在 $00 到 $19 的内存位置吗?(68HC11)
我想回复会是这样,你能告诉我我的回复是否正确吗?如果错了,为什么?
TABLE ORG $00 LDAA #26 LOOP LDD #$41 STD TABLE DECA BNE LOOP END
提前致谢,
您需要LDD #$41在循环开始之前执行,然后在BNE指令之前增加该寄存器。
LDD #$41
BNE