umon bootloader source code, support mips cpu.

源代码在线查看: flashdev.h

软件大小: 7429 K
上传用户: wldxmy
关键词: bootloader support source umon
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* flashdev.h:
				   Header file for use with 28F640 for 16 bit mode.
				*/
				#define FLASH_TIMEOUT       1000000
				#define FLASHFUNCSIZE       320
				
				/* Manufacturer and device ids... */
				#define INTEL28F640     0x150089
				#define INTEL28F320     0x140089
				
				#define Fwrite(to,frm)      (*(ftype *)to = *(ftype *)frm)
				#define Is_Equal(p1,p2)     (*(ftype *)p1 == *(ftype *)p2)
				#define Is_Not_Equal(p1,p2) (*(ftype *)p1 != *(ftype *)p2)
				#define NotAligned(ptr)     ((long)ptr & 1)
							

相关资源