Fixed the UI for the external FDC.

This commit is contained in:
TC1995
2020-06-16 16:33:36 +02:00
parent a77c88addf
commit c2840cf6cb
5 changed files with 44 additions and 70 deletions

View File

@@ -24,10 +24,6 @@
extern int fdc_type;
/* Controller types. */
#define FDC_NONE 0
#define FDC_INTERNAL 1
#define FDC_FLAG_PCJR 0x01 /* PCjr */
#define FDC_FLAG_DISKCHG_ACTLOW 0x02 /* Amstrad, PS/1, PS/2 ISA */
#define FDC_FLAG_AT 0x04 /* AT+, PS/x */
@@ -187,12 +183,4 @@ extern const device_t fdc_at_nsc_device;
extern const device_t fdc_dp8473_device;
#endif
extern char *fdc_ext_get_name(int fdc_ext);
extern char *fdc_ext_get_internal_name(int fdc_ext);
extern int fdc_ext_get_id(char *s);
extern int fdc_ext_get_from_internal_name(char *s);
extern const device_t *fdc_ext_get_device(int fdc_ext);
extern int fdc_ext_has_config(int fdc_ext);
extern int fdc_ext_available(int fdc_ext);
#endif /*EMU_FDC_H*/