Files
86Box/src/fdd.h
OBattler b024f174a3 DD floppy drives now correctly ignore DENSEL when reading DD floppies;
Ne2000 now uses the correct vendor ID for the MAC address, per information from waltje;
File name text box in Add hard disk dialog is now correctly disabled;
Floppy drive types are now stored as readable string in the configuration file.
2017-05-05 04:32:05 +02:00

35 lines
852 B
C

/* Copyright holders: Sarah Walker, Tenshi
see COPYING for more details
*/
#define SEEK_RECALIBRATE -999
void fdd_forced_seek(int drive, int track_diff);
void fdd_seek(int drive, int track_diff);
int fdd_track0(int drive);
int fdd_getrpm(int drive);
void fdd_set_densel(int densel);
int fdd_can_read_medium(int drive);
int fdd_doublestep_40(int drive);
int fdd_is_525(int drive);
int fdd_is_dd(int drive);
int fdd_is_ed(int drive);
int fdd_is_double_sided(int drive);
void fdd_set_head(int drive, int head);
int fdd_get_head(int drive);
void fdd_set_type(int drive, int type);
int fdd_get_type(int drive);
int fdd_get_flags(int drive);
extern int fdd_swap;
void fdd_init();
int fdd_get_densel(int drive);
void fdd_setswap(int swap);
char *fdd_getname(int type);
char *fdd_get_internal_name(int type);
int fdd_get_from_internal_name(char *s);