does not work yet.. sorry :-( git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1119 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
		
			
				
	
	
		
			22 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* tag: legacybios starter
 | 
						|
 *
 | 
						|
 * Copyright (C) 2003 Stefan Reinauer
 | 
						|
 *
 | 
						|
 * See the file "COPYING" for further information about
 | 
						|
 * the copyright and warranty status of this work.
 | 
						|
 */
 | 
						|
 | 
						|
#include "config.h"
 | 
						|
#include "types.h"
 | 
						|
 | 
						|
#define FIXED_ROMSTART 0xc0000
 | 
						|
#define FIXED_ROMEND   0xcffff
 | 
						|
 | 
						|
void legacybios(ucell romstart, ucell romend);
 | 
						|
 | 
						|
void cmain(void)
 | 
						|
{
 | 
						|
	legacybios(FIXED_ROMSTART,FIXED_ROMEND);
 | 
						|
	return;
 | 
						|
}
 |