May 2003
Intermediate to advanced
808 pages
32h 24m
English
asm definition — Inline assembler definition
block-decl := asm-defn
asm-defn ::= asm ( string-literal ) ;The asm definition is
implementation-defined. Typically, the string-literal contains assembler
instructions. Some compilers extend the asm syntax to make it easier to write larger
blocks of assembler code.
asm("mov 4, %eax"); // GNU on Intel IA32asm("mov eax, 4"); // Borland on Intel IA32
declaration