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.
ADD' ' 和 ' DADD'MIPS指令有什么区别?
ADD
DADD
MIPS
我知道 ' DADD' 代表 Double Word Add 但我不知道 ' ADD' 和 ' DADD' 之间的区别。
此外,两条指令似乎具有相同的语法,
例如,
ADD R1, R0, R0 DADD R1, R0, R0
ADD是 MIPS32 指令,DADD适用于寄存器为 64 位宽而不是 32 位的 MIPS64。
两条指令的作用完全相同,它们用于不同的 MIPS 架构,仅此而已。