diff options
author | 2013-06-21 14:44:06 +0000 | |
---|---|---|
committer | 2013-06-21 14:44:06 +0000 | |
commit | e533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch) | |
tree | 583486a98fa559fb449211bece50f1af9790b497 /src/mess/drivers/tx0.c | |
parent | d49ea91e69b0406f3fc2de6034819498661dd93a (diff) |
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/mess/drivers/tx0.c')
-rw-r--r-- | src/mess/drivers/tx0.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/tx0.c b/src/mess/drivers/tx0.c index a72fbc44385..f4e57d2a376 100644 --- a/src/mess/drivers/tx0.c +++ b/src/mess/drivers/tx0.c @@ -425,7 +425,7 @@ protected: const device_type TX0_READTAPE = &device_creator<tx0_readtape_image_device>; tx0_readtape_image_device::tx0_readtape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TX0_READTAPE, "TX0 Tape Reader", tag, owner, clock), + : device_t(mconfig, TX0_READTAPE, "TX0 Tape Reader", tag, owner, clock, "tx0_readtape_image", __FILE__), device_image_interface(mconfig, *this) { } @@ -460,7 +460,7 @@ protected: const device_type TX0_PUNCHTAPE = &device_creator<tx0_punchtape_image_device>; tx0_punchtape_image_device::tx0_punchtape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TX0_PUNCHTAPE, "TX0 Tape Puncher", tag, owner, clock), + : device_t(mconfig, TX0_PUNCHTAPE, "TX0 Tape Puncher", tag, owner, clock, "tx0_punchtape_image", __FILE__), device_image_interface(mconfig, *this) { } @@ -496,7 +496,7 @@ protected: const device_type TX0_PRINTER = &device_creator<tx0_printer_image_device>; tx0_printer_image_device::tx0_printer_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TX0_PRINTER, "TX0 Typewriter", tag, owner, clock), + : device_t(mconfig, TX0_PRINTER, "TX0 Typewriter", tag, owner, clock, "tx0_printer_image", __FILE__), device_image_interface(mconfig, *this) { } @@ -531,7 +531,7 @@ protected: const device_type TX0_MAGTAPE = &device_creator<tx0_magtape_image_device>; tx0_magtape_image_device::tx0_magtape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TX0_MAGTAPE, "TX0 Magnetic Tape", tag, owner, clock), + : device_t(mconfig, TX0_MAGTAPE, "TX0 Magnetic Tape", tag, owner, clock, "tx0_magtape_image", __FILE__), device_image_interface(mconfig, *this) { } |