2017-05-30 03:38:38 +02:00
|
|
|
/*
|
2023-01-06 15:36:05 -05: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
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Implementation of the raw sector-based floppy image format,
|
|
|
|
|
* as well as the Japanese FDI, CopyQM, and FDF formats.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2023-01-06 15:36:29 -05:00
|
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
2023-01-06 15:36:05 -05:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2018-03-19 01:02:04 +01:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Copyright 2008-2018 Sarah Walker.
|
|
|
|
|
* 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_IMG_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define EMU_FLOPPY_IMG_H
|
2017-05-30 03:38:38 +02:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void img_init(void);
|
|
|
|
|
extern void img_load(int drive, char *fn);
|
|
|
|
|
extern void img_close(int drive);
|
2017-08-24 01:14:39 -04:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#endif /*EMU_FLOPPY_IMG_H*/
|