blob: 207b0e26673643160921fd48bf624df91b8fd963 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02003 * Stäubli Faverges - <www.staubli.com>
wdenk2262cfe2002-11-18 00:14:45 +00004 * Pierre AUBERT p.aubert@staubli.com
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00007 */
8
9#ifndef _FDC_H_
10#define _FDC_H_
11
wdenk2262cfe2002-11-18 00:14:45 +000012/* Functions prototype */
13int fdc_fdos_init (int drive);
14int fdc_fdos_seek (int where);
15int fdc_fdos_read (void *buffer, int len);
16
17int dos_open(char *name);
18int dos_read (ulong addr);
19int dos_dir (void);
20
wdenk2262cfe2002-11-18 00:14:45 +000021#endif