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.
sbit OV = PSW^2
^这只是 XOR( ref ) 运算符对吗?不会超载什么的。
^
我怎么能得到sbitXOR 运算符?
sbit
您不应该提出问题C51然后参考A51手册中的文档,它们是不同的东西(尽管它们也有相似之处)。
C51
A51
在您的陈述中, the不是^运算符xor:
xor
sbit在C51 手册的定义中,他们解释了字符^用于表示 SFR 字节地址中的位位置。
此语法仅对声明代码行有效。
如果在程序内部使用,则^运算符是xor标准C语言中的标准位运算符(不特定于C51)。
C