]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/fdc.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / fdc.h
1 /*
2 * (C) Copyright 2002
3 * Stäubli Faverges - <www.staubli.com>
4 * Pierre AUBERT p.aubert@staubli.com
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9 #ifndef _FDC_H_
10 #define _FDC_H_
11
12 /* Functions prototype */
13 int fdc_fdos_init (int drive);
14 int fdc_fdos_seek (int where);
15 int fdc_fdos_read (void *buffer, int len);
16
17 int dos_open(char *name);
18 int dos_read (ulong addr);
19 int dos_dir (void);
20
21 #endif