2002-11-18 00:14:45 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Stäubli Faverges - <www.staubli.com>
|
2002-11-18 00:14:45 +00:00
|
|
|
* Pierre AUBERT p.aubert@staubli.com
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-18 00:14:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|