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.
我正在尝试在汇编中使用 OR 运算符。
这是第一个逻辑条件:
cmp byte ptr [bx], '+' jz perm_oper cmp byte ptr [bx], '-' jz perm_oper
我正在尝试使用 OR 运算符缩短它。但由于某种原因没有给出相同的结果:
cmp byte ptr [bx], '+' OR byte ptr [bx], '-' jz perm_oper
我究竟做错了什么?使用第一个片段的 OR 的等价物是什么?
如果你能有条不紊地做事
mov cx,(whatever) repz scasb
可能适合你