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.
我刚刚阅读了一些关于 SPARC Assembly 的旧课程,但我不记得“add”和“addcc”指令之间的区别(比如 sub 和 subcc)。
你能给我解释一下这个区别吗?
谢谢
cc后缀表示指令设置条件代码(Z、N、V 标志)。所以add执行加法而不设置条件码,而addcc执行加法并设置条件码。
cc
add
addcc