Mar 17, 2006 #1 D Dhans Junior Member level 3 Joined Sep 14, 2005 Messages 30 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,286 Activity points 1,473 need help hi all what is the use of pragma directive in c programming language?
Mar 17, 2006 #2 D dimoto Newbie level 3 Joined Feb 6, 2006 Messages 3 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,281 Activity points 1,301 Re: need help Not a standard C function, usualy specific instruction for the processor or compiler.
Mar 22, 2006 #3 I IORY Newbie level 6 Joined Mar 22, 2006 Messages 13 Helped 1 Reputation 2 Reaction score 1 Trophy points 1,283 Location P.R China Activity points 1,444 need help it looks like c language used in ICCAVR----a software used in AVR chip programme. "pragma" use like the following: #pragma interrupt_handler T0_OVF:10 void T0_OVF( void ) { ........ } like a declaration before a interrupt handler function I don't know whether it is the answer you need
need help it looks like c language used in ICCAVR----a software used in AVR chip programme. "pragma" use like the following: #pragma interrupt_handler T0_OVF:10 void T0_OVF( void ) { ........ } like a declaration before a interrupt handler function I don't know whether it is the answer you need