This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

keil compiler

Can we use keil as separate compiler only???

Parents
  • I write all my source code using the best text editor ever...

    C:\Impressive\Directory\Name>copy con:=Main.C
    #include <stdio.h>
    typdef unsigned long u32
    void main( void )
    {
        u32 i;
    
        printf( "\nA reminder about whole numbers:\n" );
    
        for( i=0; i < (2^32-1); i++ ) // only 4,294,967,295 printf calls (aka 'forever')
        {
            if( (i % 2) != 0 )
            {
                printf( "%ld is Odd\n", i );
            }
            else
            {
                printf( "%ld is Even\n", i );
            }
        }
    }^Z
    C:\Impressive\Directory\Name>
    

    This works out great because I never make mistakes and never have to actually 'edit' anything.

    --Cpt. Vince Foster
    2nd Cannon Place
    Fort Marcy Park, VA

Reply
  • I write all my source code using the best text editor ever...

    C:\Impressive\Directory\Name>copy con:=Main.C
    #include <stdio.h>
    typdef unsigned long u32
    void main( void )
    {
        u32 i;
    
        printf( "\nA reminder about whole numbers:\n" );
    
        for( i=0; i < (2^32-1); i++ ) // only 4,294,967,295 printf calls (aka 'forever')
        {
            if( (i % 2) != 0 )
            {
                printf( "%ld is Odd\n", i );
            }
            else
            {
                printf( "%ld is Even\n", i );
            }
        }
    }^Z
    C:\Impressive\Directory\Name>
    

    This works out great because I never make mistakes and never have to actually 'edit' anything.

    --Cpt. Vince Foster
    2nd Cannon Place
    Fort Marcy Park, VA

Children
No data