src/floppy

This commit is contained in:
Jasmine Iwanek
2022-03-13 09:38:53 -04:00
parent 369f6774f9
commit 288e2ce1d2
3 changed files with 198 additions and 149 deletions

View File

@@ -126,14 +126,16 @@ static const device_config_t b215_config[] = {
};
const device_t fdc_b215_device = {
"Magitronic B215",
"b215",
DEVICE_ISA,
0,
b215_init,
b215_close,
NULL,
{b215_available},
NULL,
NULL,
b215_config};
.name = "Magitronic B215",
.internal_name = "b215",
.flags = DEVICE_ISA,
.local = 0,
.init = b215_init,
.close = b215_close,
.reset = NULL,
{ .available = b215_available },
.speed_changed = NULL,
.force_redraw = NULL,
.config = b215_config
};