mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			358 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			358 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
** MPC823 Video Controller
 | 
						|
** =======================
 | 
						|
** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
 | 
						|
** AIRVENT SAM s.p.a - RIMINI(ITALY)
 | 
						|
**
 | 
						|
*/
 | 
						|
 | 
						|
#ifndef _VIDEO_H_
 | 
						|
#define _VIDEO_H_
 | 
						|
 | 
						|
/* Video functions */
 | 
						|
 | 
						|
int	video_init	(void *videobase);
 | 
						|
void	video_putc	(const char c);
 | 
						|
void	video_puts	(const char *s);
 | 
						|
void	video_printf	(const char *fmt, ...);
 | 
						|
 | 
						|
#endif
 |