summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/coco/coco_fdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/coco/coco_fdc.h')
-rw-r--r--src/devices/bus/coco/coco_fdc.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/bus/coco/coco_fdc.h b/src/devices/bus/coco/coco_fdc.h
index 4dcd4b7b694..c596dfeef33 100644
--- a/src/devices/bus/coco/coco_fdc.h
+++ b/src/devices/bus/coco/coco_fdc.h
@@ -8,8 +8,8 @@
*********************************************************************/
-#ifndef MAME_DEVICES_BUS_COCO_FDC_H
-#define MAME_DEVICES_BUS_COCO_FDC_H
+#ifndef MAME_BUS_COCO_COCO_FDC_H
+#define MAME_BUS_COCO_COCO_FDC_H
#include "cococart.h"
#include "imagedev/floppy.h"
@@ -26,20 +26,20 @@ class coco_family_fdc_device_base :
public device_cococart_interface
{
public:
- // construction/destruction
- coco_family_fdc_device_base(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source)
- : device_t(mconfig, type, name, tag, owner, clock, shortname, source)
- , device_cococart_interface(mconfig, *this)
- {
- m_owner = dynamic_cast<cococart_slot_device *>(owner);
- };
-
DECLARE_WRITE_LINE_MEMBER(fdc_intrq_w) { m_intrq = state; update_lines(); }
DECLARE_WRITE_LINE_MEMBER(fdc_drq_w) { m_drq = state; update_lines(); }
DECLARE_FLOPPY_FORMATS(floppy_formats);
protected:
+ // construction/destruction
+ coco_family_fdc_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
+ : device_t(mconfig, type, tag, owner, clock)
+ , device_cococart_interface(mconfig, *this)
+ {
+ m_owner = dynamic_cast<cococart_slot_device *>(owner);
+ };
+
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
@@ -84,4 +84,4 @@ extern const device_type CP400_FDC;
extern const device_type DRAGON_FDC;
extern const device_type SDTANDY_FDC;
-#endif // MAME_DEVICES_BUS_COCO_FDC_H
+#endif // MAME_BUS_COCO_COCO_FDC_H