mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
bus/ata/atapicdr.cpp: Support subclassing atapi_fixed_cdrom_device. [R. Belmont]
This commit is contained in:
parent
bf6b77d990
commit
efa5983341
@ -26,8 +26,13 @@ atapi_cdrom_device::atapi_cdrom_device(const machine_config &mconfig, device_typ
|
||||
{
|
||||
}
|
||||
|
||||
atapi_fixed_cdrom_device::atapi_fixed_cdrom_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) :
|
||||
atapi_cdrom_device(mconfig, type, tag, owner, clock)
|
||||
{
|
||||
}
|
||||
|
||||
atapi_fixed_cdrom_device::atapi_fixed_cdrom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
|
||||
atapi_cdrom_device(mconfig, ATAPI_FIXED_CDROM, tag, owner, clock)
|
||||
atapi_fixed_cdrom_device(mconfig, ATAPI_FIXED_CDROM, tag, owner, clock)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -72,6 +72,7 @@ public:
|
||||
atapi_fixed_cdrom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
|
||||
|
||||
protected:
|
||||
atapi_fixed_cdrom_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
|
||||
virtual void device_reset() override;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user