《Keil Cx51 V7.0单片机高级语言编程与uVision2应用实践》附盘源代码

源代码在线查看: eeprom.h

软件大小: 12522 K
上传用户: flyhack007
关键词: uVision2 Keil 7.0 Cx
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 *  This file contains the data defintions that are stored in EEPROM
				 */
				
				#ifndef DECLARE                    // if DECLARE is not defined
				  #define DECLARE  extern          // variables are extern
				#endif
				
				struct sample  {
				  char carray[20];
				  int  iarray[20];
				  long larray[20];
				};
				
				DECLARE struct sample far esample1;  // reserve space for esample1 struct
				DECLARE struct sample far esample2;  // reserve space for esample2 struct
				DECLARE char *        far etxt_ptr;  // pointer in EEPROM space
				
				
							

相关资源