Using the asm KeyWord

Assembly langauge may be directly embedded into a C++ program.
asm("string"); //string is passed directly to the
compiler
Variations of using asm are compiler dependant, like these:
asm instruction; asm
instruction newline asm {
 instruction sequence
}