diff options
author | 2021-03-29 06:50:59 -0700 | |
---|---|---|
committer | 2021-03-30 00:50:59 +1100 | |
commit | af8c507855559e000d3ca72af728fe51e7c4a8af (patch) | |
tree | 0f3084c3fd64685c2cfa9afecbfa5455876403a5 | |
parent | 2651cdd54c1df5f36bc68f46fafb5e503d9c55da (diff) |
src/devices/bus/coco/coco_fdc.cpp: Call base device_start from derived class. (#7897)
-rw-r--r-- | src/devices/bus/coco/coco_fdc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/bus/coco/coco_fdc.cpp b/src/devices/bus/coco/coco_fdc.cpp index d6c5e455e64..0f72fece59d 100644 --- a/src/devices/bus/coco/coco_fdc.cpp +++ b/src/devices/bus/coco/coco_fdc.cpp @@ -272,6 +272,8 @@ coco_fdc_device_base::coco_fdc_device_base(const machine_config &mconfig, device void coco_fdc_device_base::device_start() { + coco_family_fdc_device_base::device_start(); + install_readwrite_handler(0xFF74, 0xFF76, read8sm_delegate(*this, FUNC(coco_fdc_device_base::ff74_read)), write8sm_delegate(*this, FUNC(coco_fdc_device_base::ff74_write))); |