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

error: L6236E: No section matches selector - no section to be FIRST/LAST

Hi, I wrote a program on arm7 lpc2148 in keil but couldn't get the output .It is showing the error
"error: L6236E: No section matches selector - no section to be FIRST/LAST"..
my code is
----------------------------------------------
#include<lpc214x.h>
void delay(unsigned int a);

int main() { while(1) { IODIR0=0xffffffff; IOSET0=0x00070000; delay(1000); IOCLR0=0x00070000; } }

void delay(unsigned int a) { unsigned int i,j; for(i=0;i<a;i++) for(j=0;j<1000;j++); }
------------------------------------------------
Can someone please help me get off this error..?