diff options
author | 2014-10-19 00:57:44 +0000 | |
---|---|---|
committer | 2014-10-19 00:57:44 +0000 | |
commit | 1054225eca0414818b6fab516bcdbdf022924b7d (patch) | |
tree | 726aefcc113a67763e051ff0bbad45e22e65c8ab /src/emu/bus/coco/coco_fdc.h | |
parent | 00d0c67a02a0bb416f83fe4111d3064434700dc0 (diff) |
(MESS) TRS-80 CoCo: implement virtual "Becker Port" for DriveWire support. [Richard Goedeken]
Diffstat (limited to 'src/emu/bus/coco/coco_fdc.h')
-rw-r--r-- | src/emu/bus/coco/coco_fdc.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/emu/bus/coco/coco_fdc.h b/src/emu/bus/coco/coco_fdc.h index ddbfcae868d..a9d1dac8eab 100644 --- a/src/emu/bus/coco/coco_fdc.h +++ b/src/emu/bus/coco/coco_fdc.h @@ -95,6 +95,23 @@ public: // device type definition extern const device_type COCO_FDC_V11; +// ======================> coco3_hdb1_device + +class coco3_hdb1_device : + public coco_fdc_device +{ +public: + // construction/destruction + coco3_hdb1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + + // optional information overrides + virtual const rom_entry *device_rom_region() const; +}; + + +// device type definition +extern const device_type COCO3_HDB1; + // ======================> cp400_fdc_device class cp400_fdc_device : |