summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/b2m.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/b2m.h')
-rw-r--r--src/mame/includes/b2m.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/b2m.h b/src/mame/includes/b2m.h
index 008f3ed6b4e..5856ed7c3a5 100644
--- a/src/mame/includes/b2m.h
+++ b/src/mame/includes/b2m.h
@@ -11,6 +11,7 @@
#pragma once
+#include "imagedev/floppy.h"
#include "machine/i8255.h"
#include "machine/pic8259.h"
#include "machine/pit8253.h"
@@ -31,6 +32,7 @@ public:
, m_ram(*this, RAM_TAG)
, m_palette(*this, "palette")
, m_fdc(*this, "fd1793")
+ , m_fd(*this, "fd%u", 0U)
, m_pic(*this, "pic8259")
{ }
@@ -91,6 +93,7 @@ protected:
/* devices */
optional_device<fd1793_device> m_fdc;
+ optional_device_array<floppy_connector, 2> m_fd;
optional_device<pic8259_device> m_pic;
};