constructor delegation (nw)

This commit is contained in:
Miodrag Milanovic 2017-05-15 11:23:45 +02:00
parent b4fb95dd59
commit b3e4f34645

View File

@ -146,15 +146,14 @@ DEFINE_DEVICE_TYPE(COCO_PAK_BANKED, coco_pak_banked_device, "cocopak_banked", "C
// coco_pak_device - constructor
//-------------------------------------------------
coco_pak_banked_device::coco_pak_banked_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: coco_pak_device(mconfig, COCO_PAK_BANKED, tag, owner, clock)
{
}
coco_pak_banked_device::coco_pak_banked_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
: coco_pak_device(mconfig, type, tag, owner, clock)
{
}
coco_pak_banked_device::coco_pak_banked_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: coco_pak_banked_device(mconfig, COCO_PAK_BANKED, tag, owner, clock)
{
}
/*-------------------------------------------------
device_reset - device-specific startup