- 论坛徽章:
- 2
|
回复 1# jinglexy - 1. static inline unsigned short from32to16(unsigned a)
- 2. {
- 3. unsigned short b = a >> 16;
- 4. asm("addw %w2,%w0\n\t"
- 5. "adcw $0,%w0\n"
- 6. : "=r" (b)
- 7. : "0" (b), "r" (a));
- 8. return b;
- 9. }
复制代码 %0是指第0个操作数(从0开始计数),这里指b。
至于w,参见http://gcc.gnu.org/onlinedocs/gc ... tml#Output-Template
`%' followed by a letter and a digit says to output an operand in an alternate fashion. Four letters have standard, built-in meanings described below. The machine description macro PRINT_OPERAND can define additional letters with nonstandard meanings.
所以,具体的含义还需要查看相应的代码 |
|