diff options
author | 2014-04-07 06:04:18 +0000 | |
---|---|---|
committer | 2014-04-07 06:04:18 +0000 | |
commit | fec65e0b5766ade69e086d1c5b859d97494fce56 (patch) | |
tree | c22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/bus/coco | |
parent | 30d94e51c53f30187a1bc565ef33e4744319790e (diff) |
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/bus/coco')
-rw-r--r-- | src/emu/bus/coco/coco_fdc.c | 4 | ||||
-rw-r--r-- | src/emu/bus/coco/coco_fdc.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/bus/coco/coco_fdc.c b/src/emu/bus/coco/coco_fdc.c index 29b60b23a7c..305622c5873 100644 --- a/src/emu/bus/coco/coco_fdc.c +++ b/src/emu/bus/coco/coco_fdc.c @@ -80,7 +80,7 @@ #define LOG_FDC 0 #define WD_TAG "wd17xx" -#define WD2797_TAG "wd2797" +#define WD2797_TAG "wd2797" #define DISTO_TAG "disto" #define CLOUD9_TAG "cloud9" @@ -437,7 +437,7 @@ const device_type DRAGON_FDC = &device_creator<dragon_fdc_device>; // dragon_fdc_device - constructor //------------------------------------------------- dragon_fdc_device::dragon_fdc_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) - : coco_fdc_device(mconfig, type, name, tag, owner, clock, shortname, source) + : coco_fdc_device(mconfig, type, name, tag, owner, clock, shortname, source) { } dragon_fdc_device::dragon_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) diff --git a/src/emu/bus/coco/coco_fdc.h b/src/emu/bus/coco/coco_fdc.h index fabfe12511a..ddbfcae868d 100644 --- a/src/emu/bus/coco/coco_fdc.h +++ b/src/emu/bus/coco/coco_fdc.h @@ -46,7 +46,7 @@ public: void set_intrq(UINT8 val) { m_intrq = val; } void set_drq(UINT8 val) { m_drq = val; } - + DECLARE_WRITE_LINE_MEMBER(fdc_intrq_w); DECLARE_WRITE_LINE_MEMBER(fdc_drq_w); protected: @@ -65,12 +65,12 @@ protected: UINT8 m_intrq : 1; optional_device<wd1773_device> m_wd17xx; /* WD17xx */ - optional_device<wd2797_device> m_wd2797; /* WD2797 */ + optional_device<wd2797_device> m_wd2797; /* WD2797 */ optional_device<ds1315_device> m_ds1315; /* DS1315 */ /* Disto RTC */ optional_device<msm6242_device> m_disto_msm6242; /* 6242 RTC on Disto interface */ - + offs_t m_msm6242_rtc_address; }; |