Keil™, An ARM® Company

Cx51 User's Guide

ENDASM Compiler Directive

Abbreviation None.
Arguments None.
Default None.
µVision This directive may not be specified on the command line.
Description 

The ENDASM directive signals the end of a block of assembler source text to merge into the .SRC file generated using the SRC directive.

Note

  • The ASM and ENDASM directives may occur only in the source file as part of a #pragma.
    See Also ASM, SRC
    Example 
    extern void test ();
    
    void main (void)  {
      test ();
    
    #pragma asm
      JMP   $  ; endless loop
    #pragma endasm
    }