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
|
|
|
*
|
2018-03-19 01:02:04 +01:00
|
|
|
* Definitions for the Teledisk floppy image format.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2018-03-19 01:02:04 +01:00
|
|
|
* Version: @(#)floppy_td0.h 1.0.2 2018/03/17
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2019-12-05 21:36:28 +01:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2018-03-19 01:02:04 +01:00
|
|
|
*
|
|
|
|
|
* Copyright 2016-2018 Miran Grca.
|
2019-12-05 21:36:28 +01:00
|
|
|
* Copyright 2017,2018 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2017-09-04 01:52:29 -04:00
|
|
|
#ifndef EMU_FLOPPY_TD0_H
|
|
|
|
|
# define EMU_FLOPPY_TD0_H
|
2017-05-30 03:38:38 +02:00
|
|
|
|
2017-08-24 01:14:39 -04:00
|
|
|
|
|
|
|
|
extern void td0_init(void);
|
|
|
|
|
extern void td0_load(int drive, wchar_t *fn);
|
|
|
|
|
extern void td0_close(int drive);
|
|
|
|
|
|
|
|
|
|
|
2017-09-04 01:52:29 -04:00
|
|
|
#endif /*EMU_FLOPPY_TD0_H*/
|