#include "stdint.h"
#include "Delayms.h"
#include "M051.h"
#include "Register_Bit.h"
void main()
{
PWRCON|=XTL12M_EN;
while((CLKSTATUS&XTL12M_STB)==0);
CLKSEL0=(CLKSEL0&(~HCLK))|HCLK_12M;
P2_PMD=0x5555;
while(1)
{
P2_DOUT&=~0x01;
Delayms(500);
P2_DOUT|=0x01;
Delayms(500);
}
}main.c(5): error: #130: expected a "{"错在哪了? |