mirror of
https://github.com/holub/mame
synced 2025-10-07 17:27:06 +03:00
constructor delegation (nw)
This commit is contained in:
parent
b4fb95dd59
commit
b3e4f34645
@ -146,15 +146,14 @@ DEFINE_DEVICE_TYPE(COCO_PAK_BANKED, coco_pak_banked_device, "cocopak_banked", "C
|
|||||||
// coco_pak_device - constructor
|
// 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_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_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
|
device_reset - device-specific startup
|
||||||
|
Loading…
Reference in New Issue
Block a user