⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 nandflash驱动程序
💻 C
字号:
//////////////////////////////////////////////////////////////////////////	文件名		:INIT.c//	文件功能	:系统初始化模块//	作者		:xyliu//	创建时间	:2003年2月10日//      处理器	        : Epson E0C33209//	项目名称	:AMR-NB//	备注		:适合硬件板卡为S1C33 Star、Legedn MobilePhone//  //////////////////////////////////////////////////////////////////////////	历史记录://	编号     日期    	作者    备注//       0       2003-3-21      xyliu//////////////////////////////////////////////////////////////////////////System Config//#include "..\Config\Config.h"//System Include File#include "..\include\bcu.h"#include "..\include\idma.h"#include "..\include\int.h"#include "..\include\io.h"#include "..\include\presc.h"#include "..\include\8timer.h"//#include "..\Drivers\Drv_LCD.h"//#include "..\Drivers\Drv_NandFls.h"//#include "..\Drivers\Drv_Key.h"void main(void){	nand_fls_init();		nand_fls_tst_all();	Main_Loop:		    asm("nop");    asm("nop");    asm("nop");    asm("nop");    goto Main_Loop;    Error_Loop:    asm("nop");    asm("nop");    asm("nop");    asm("nop");        goto Error_Loop;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -