44 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __EEPROM_H
 | 
						|
#define __EEPROM_H
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
// EEPROM.H
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
// Description : small description of the goal of the module
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
// Copyright SGS Thomson Microelectronics  !  Version alpha  !  Jan 1st, 1995
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
//                               Include files
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
//                               Exported Types
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
//                             Exported Variables
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
//                             Exported Constants
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
//                             Exported Functions
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
// One line function description (same as in .C)
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
// In     :
 | 
						|
// Out    :
 | 
						|
// InOut  :
 | 
						|
// Global :
 | 
						|
// Return :
 | 
						|
//----------------------------------------------------------------------------
 | 
						|
VOID EEPROMInitialize(WORD *ArrayPtr);
 | 
						|
 | 
						|
//------------------------------- End of File --------------------------------
 | 
						|
#endif // #ifndef __EEPROM_H
 |