29.7 The asm Statement
Sometimes there are things
that you just
can't do in C++. In those rare cases, the
asm statement comes to the rescue. It lets you
specify assembly code directly. The general form of this statement
is:
asm("assembly statement")
Needless to say, this statement is highly nonportable.
|