diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/mess/machine/isa_aha1542.c | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/mess/machine/isa_aha1542.c')
-rw-r--r-- | src/mess/machine/isa_aha1542.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mess/machine/isa_aha1542.c b/src/mess/machine/isa_aha1542.c index 40278f94bf6..9e0056b04f8 100644 --- a/src/mess/machine/isa_aha1542.c +++ b/src/mess/machine/isa_aha1542.c @@ -185,16 +185,11 @@ machine_config_constructor aha1542_device::device_mconfig_additions() const } aha1542_device::aha1542_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, AHA1542, "AHA1542 SCSI Controller", tag, owner, clock), + device_t(mconfig, AHA1542, "AHA1542 SCSI Controller", tag, owner, clock, "aha1542", __FILE__ ), device_isa16_card_interface(mconfig, *this) { } -void aha1542_device::device_config_complete() -{ - m_shortname = "aha1542"; -} - void aha1542_device::device_start() { set_isa_device(); |