/*
GD32F最小系统测试程序
不需要头文件和库函数,很小巧实用!
作者: 大秦正声,小电子
日期: 2013.7.18
博客: http://yang96381.blog.163.com
邮箱: yang96381@163.com
*/
#define DELAY_COUNT 0xFFFFF
void Delay( long int Count)
{
for(; Count!= 0;Count--);
}
int main()
{
*(long*)0x40021018=0x21;///I/O D
*(long*)0x40011400=0x11111111;
*(long*)0x40011404=0x11111111;
while (1)
{
*(long*)0x4001140c=0xfff;
Delay(DELAY_COUNT);
*(long*)0x4001140c=0x0;
Delay(DELAY_COUNT);
}
} |