On Thu, Apr 18, 2002 at 03:23:10PM -0700, Wayne Yen wrote:
> I am interested in writing the ARM assembly as C-Macro.
> I've tried to look at the #define __save_flags_cli(x) in system.h and am
> able to guess what it means, I'd appreciated if someone can point me to
> any documentation detailing the syntax.

info gcc
/constraints

As a starter, the general syntax is:

asm("<<asm code>>" :
    "output constraint" (variable) ... :
    "input constraint" (variable) ... :
    "clobber list")

_______________________________________________
http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm
http://www.arm.linux.org.uk/armlinux/mailinglists.php
Please visit the above addresses for information on this list.

Reply via email to