8085 微处理器操作码语句错误
8085 microprocessor op-code statement faults
问题陈述是:
Load a data byte A2H in memory location 8150H and 76H in the accumulator. Add the contents of the memory location to the contents of the accumulator.
我在基于 8085 微处理器的微型计算机套件中用于执行问题的操作码语句是:
- 3E:76:26:81:2E:50:36:A2:86:CF
即:
- MVI A,76H
- MVI H,81H
- MVI L,50H
- MVI M,A2H
- 添加男
- RST 1
问题陈述有什么问题?在检查累加器时,执行后未显示所需结果。
几乎是在黑暗中拍摄,但你可以试试这个。两个改动。立即数需要 #
,以字母开头的十六进制值需要 0
前缀以区别于标签。
MVI A,#76H
MVI H,#81H
MVI L,#50H
MVI M,#0A2H
ADD M
RST 1
问题陈述是:
Load a data byte A2H in memory location 8150H and 76H in the accumulator. Add the contents of the memory location to the contents of the accumulator.
我在基于 8085 微处理器的微型计算机套件中用于执行问题的操作码语句是:
- 3E:76:26:81:2E:50:36:A2:86:CF
即:
- MVI A,76H
- MVI H,81H
- MVI L,50H
- MVI M,A2H
- 添加男
- RST 1
问题陈述有什么问题?在检查累加器时,执行后未显示所需结果。
几乎是在黑暗中拍摄,但你可以试试这个。两个改动。立即数需要 #
,以字母开头的十六进制值需要 0
前缀以区别于标签。
MVI A,#76H
MVI H,#81H
MVI L,#50H
MVI M,#0A2H
ADD M
RST 1