比较汇编中的位
在8051中如何比较两个位是否相等?如果两位相等,我需要跳转。 我在寄存器中有一个值,我正在搜索该值是否等于另一个常量值。示例:我有“EDh”值,并且 R0 寄存器中有另一个值。
How can I compare two bits if they are equal or not in 8051? I need to jump if two bits are equal.
I have a value in a register and I am searching if this value is equal another constant value. Example: I have "EDh" value and I have another value in R0 register.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要比较寄存器和立即数(常量),然后有条件跳转,可以使用 <代码>CJNE指令。
To compare a register and an immediate (a constant), and then conditionally jump, you can use the
CJNE
instruction.自从我使用 8051 以来已经很长时间了。但我似乎记得 CJNE 指令非常有用。
It's been a long time since I worked with the 8051. But I seem to remember that the CJNE instruction was quite useful.