cppreference.com > C/C++ Keywords > asm
asm
Syntax:
  asm( "instruction" );

The asm command allows you to insert assembly language commands directly into your code. Various different compilers allow differing forms for this command, such as

   asm {
     instruction-sequence
   }		
		

or

   asm( instruction );