【问题标题】:What is the full form of Rd, Rn, Rm, Ra in assembly language?汇编语言中Rd、Rn、Rm、Ra的完整形式是什么? 【发布时间】:2016-01-27 17:14:09 【问题描述】: 我们经常使用这些术语。但是为什么这样命名就不清楚了。 【问题讨论】: What do the abbriviations (Rn, Rd, ...) in the instruction set of ARM mean?的可能重复 标签: assembly arm 【解决方案1】: Rd:目标寄存器 Rn:寄存器中用于算术运算的操作数。 Rm:寄存器中用于算术运算的操作数。 Ra:寄存器中用于加法或减法的值。 想想“累加器” 您可以通过ARM Assembly Reference 查看以这种方式使用的示例。 【讨论】: