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.
This commit is contained in:
OBattler
2017-05-05 04:32:05 +02:00
parent ceff764e9e
commit b024f174a3
8 changed files with 43 additions and 9 deletions

View File

@@ -10,6 +10,7 @@ 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);
@@ -28,3 +29,6 @@ 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);