2017-05-30 03:38:38 +02:00
|
|
|
/*
|
2019-12-05 21:36:28 +01:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2019-12-05 21:36:28 +01:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
|
|
|
|
* Implementation of the FDI floppy stream image format
|
|
|
|
|
* interface to the FDI2RAW module.
|
|
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2019-12-05 21:36:28 +01:00
|
|
|
* Authors: Sarah Walker, <tommowalker@tommowalker.co.uk>
|
2017-05-30 03:38:38 +02:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
2019-12-05 21:36:28 +01:00
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-12-15 21:16:25 -05:00
|
|
|
*
|
2018-03-19 01:02:04 +01:00
|
|
|
* Copyright 2008-2018 Sarah Walker.
|
2019-12-05 21:36:28 +01:00
|
|
|
* Copyright 2016-2018 Miran Grca.
|
|
|
|
|
* Copyright 2018 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2017-09-04 01:52:29 -04:00
|
|
|
#ifndef EMU_FLOPPY_FDI_H
|
|
|
|
|
# define EMU_FLOPPY_FDI_H
|
2017-05-30 03:38:38 +02:00
|
|
|
|
2017-08-24 01:14:39 -04:00
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
extern void fdi_seek(int drive, int track);
|
2021-03-14 20:35:01 +01:00
|
|
|
extern void fdi_load(int drive, char *fn);
|
2018-03-19 01:02:04 +01:00
|
|
|
extern void fdi_close(int drive);
|
2017-08-24 01:14:39 -04:00
|
|
|
|
|
|
|
|
|
2017-09-04 01:52:29 -04:00
|
|
|
#endif /*EMU_FLOPPY_FDI_H*/
|