summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/wd_fdc.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-06-21 14:44:06 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-06-21 14:44:06 +0000
commite533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch)
tree583486a98fa559fb449211bece50f1af9790b497 /src/emu/machine/wd_fdc.h
parentd49ea91e69b0406f3fc2de6034819498661dd93a (diff)
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/emu/machine/wd_fdc.h')
-rw-r--r--src/emu/machine/wd_fdc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/wd_fdc.h b/src/emu/machine/wd_fdc.h
index 8b87e7f56b3..90f99941134 100644
--- a/src/emu/machine/wd_fdc.h
+++ b/src/emu/machine/wd_fdc.h
@@ -112,7 +112,7 @@ class wd_fdc_t : public device_t {
public:
typedef delegate<void (bool state)> line_cb;
- wd_fdc_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
+ wd_fdc_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
void dden_w(bool dden);
void set_floppy(floppy_image_device *floppy);
@@ -414,7 +414,7 @@ private:
class wd_fdc_analog_t : public wd_fdc_t {
public:
- wd_fdc_analog_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
+ wd_fdc_analog_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
protected:
virtual void pll_reset(bool fm, attotime when);
@@ -432,7 +432,7 @@ private:
class wd_fdc_digital_t : public wd_fdc_t {
public:
- wd_fdc_digital_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
+ wd_fdc_digital_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
protected:
static const int wd_digital_step_times[4];