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

IAR Compilation error

Hi 

I am compiling below assembly language code for ARM Cortex M4 using IAR Workbench and getting error, could some one help me on this. calling BadWebConfig_Txt from C code.

#define code_ADDRESS(a) ((a)>>24 & 0ffH,(a)>>16 & 0ffH,(a)>>8 & 0ffH,(a) & 0ffH)

extern show_IP_failure;
PUBLIC BadWebConfig_Txt
SECTION .text:CONST:NOROOT(4) ;

BadWebConfig_Txt:
DCB   code_ADDRESS(show_IP_failure)

end