Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
05/14/04 15:18
Read: times


 
#70345 - RE: IAR C compiller ver 6.10
Responding to: ???'s previous message
Hi Russell,

IAR changed things when they created 6.10. Totally incompatible with their earlier 8051 compiler...

Bit variables are now "bool" instead (probably to match their other compilers). So instead of:

bit test1;

you would use:

bool test1;


Regarding interrupt service routine declarations, from the manual:

The #pragma vector directive specifies the vector of an interrupt function whose declaration follows the pragma directive.

Example:

#pragma vector=0x14
__interrupt void my_handler(void);

I've had 6.10 for several months now, but haven't really used it, I'm still waiting for their upgrade and documentation that supposedly will allow existing users to migrate to the new compiler.

So far from my impressions of it, if you've got the money to buy this compiler, check out Keil!

Dennis



List of 4 messages in thread
TopicAuthorDate
IAR C compiller ver 6.10            01/01/70 00:00      
   RE: IAR C compiller ver 6.10            01/01/70 00:00      
   RE: IAR C compiller ver 6.10            01/01/70 00:00      
      RE: IAR C compiller ver 6.10            01/01/70 00:00      

Back to Subject List