mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2002
 | |
|  * Stäubli Faverges - <www.staubli.com>
 | |
|  * Pierre AUBERT  p.aubert@staubli.com
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef _FDC_H_
 | |
| #define _FDC_H_
 | |
| 
 | |
| /* Functions prototype                                                       */
 | |
| int fdc_fdos_init (int drive);
 | |
| int fdc_fdos_seek (int where);
 | |
| int fdc_fdos_read (void *buffer, int len);
 | |
| 
 | |
| int dos_open(char *name);
 | |
| int dos_read (ulong addr);
 | |
| int dos_dir (void);
 | |
| 
 | |
| #endif
 |