Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 434 Bytes

200806130925.txt.md

File metadata and controls

19 lines (13 loc) · 434 Bytes

24.11 C语言编程时如何在嵌入式汇编里使用宏

http://scz.617.cn/unix/200806130925.txt

Q:

我在写一个C程序,其中用到了嵌入式汇编。有一些常数反复在嵌入式汇编里出现,C 语言#define的宏又不能用在嵌入式汇编里。

A: scz@nsfocus 2008-06-13 09:25

用法演示如下:

asm (" .set VALUE, 0x51211314 lis %r3, VALUE@h ori %r3, %r3, VALUE@l ");