mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	- Add support for Altera Nios-II processors. - Add support for Psyent PCI-5441 board. - Add support for Psyent PK1C20 board.
		
			
				
	
	
		
			17 lines
		
	
	
		
			404 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			404 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #define BITS_PER_UNIT	8
 | |
| 
 | |
| typedef 	 int HItype		__attribute__ ((mode (HI)));
 | |
| typedef unsigned int UHItype		__attribute__ ((mode (HI)));
 | |
| 
 | |
| typedef		 int SItype		__attribute__ ((mode (SI)));
 | |
| typedef unsigned int USItype		__attribute__ ((mode (SI)));
 | |
| 
 | |
| typedef int word_type			__attribute__ ((mode (__word__)));
 | |
| 
 | |
| struct SIstruct {HItype low, high;};
 | |
| 
 | |
| typedef union {
 | |
| 	struct SIstruct s;
 | |
| 	SItype ll;
 | |
| } SIunion;
 |