This commit is contained in:
waltje
2017-10-19 21:09:20 -04:00
18 changed files with 262 additions and 113 deletions

View File

@@ -28,7 +28,7 @@
#include "hdc.h"
char hdc_name[16]; /* configured HDC name */
char *hdc_name; /* configured HDC name */
int hdc_current;
@@ -73,8 +73,8 @@ static device_t inthdc_device = {
static struct {
char name[50];
char internal_name[16];
char *name;
char *internal_name;
device_t *device;
int is_mfm;
} controllers[] = {

View File

@@ -27,7 +27,7 @@
* least 7 devices, with each device being
* able to support 8 units, but hey... */
extern char hdc_name[16];
extern char *hdc_name;
extern int hdc_current;