diff options
author | 2024-11-19 14:55:34 +0700 | |
---|---|---|
committer | 2024-11-20 16:26:17 +0700 | |
commit | 6fbd393cca061b3d2dcf6f6f50e261465549b752 (patch) | |
tree | 4140ce11f12de9089e3653223818f6ee6064dd1e /src/devices/bus | |
parent | a72c6ab3c13221708a2e77adb87e28cab2c242cc (diff) |
scsicd512: disambiguate Toshiba XM3301 naming
Diffstat (limited to 'src/devices/bus')
-rw-r--r-- | src/devices/bus/scsi/scsicd512.cpp | 6 | ||||
-rw-r--r-- | src/devices/bus/scsi/scsicd512.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/scsi/scsicd512.cpp b/src/devices/bus/scsi/scsicd512.cpp index 5395d9ff5b4..52e5f7d7f32 100644 --- a/src/devices/bus/scsi/scsicd512.cpp +++ b/src/devices/bus/scsi/scsicd512.cpp @@ -10,7 +10,7 @@ #include "scsicd512.h" DEFINE_DEVICE_TYPE(RRD45, dec_rrd45_device, "rrd45", "DEC RRD45") -DEFINE_DEVICE_TYPE(XM3301, toshiba_xm3301_device, "xm3301", "Toshiba XM-3301TA CD-ROM") +DEFINE_DEVICE_TYPE(XM3301TA, toshiba_xm3301ta_device, "xm3301ta", "Toshiba XM-3301TA CD-ROM") DEFINE_DEVICE_TYPE(XM5301SUN, toshiba_xm5301_sun_device, "xm5301sun", "Toshiba XM-5301B Sun 4x CD-ROM") DEFINE_DEVICE_TYPE(XM5401SUN, toshiba_xm5401_sun_device, "xm5401sun", "Toshiba XM-5401B Sun 4x CD-ROM") DEFINE_DEVICE_TYPE(XM5701, toshiba_xm5701_device, "xm5701", "Toshiba XM-5701B 12x CD-ROM") @@ -76,8 +76,8 @@ dec_rrd45_device::dec_rrd45_device(const machine_config &mconfig, const char *ta { } -toshiba_xm3301_device::toshiba_xm3301_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - scsicd512_device(mconfig, XM3301, tag, owner, "TOSHIBA ", "CD-ROM XM-3301TA", "0272", 0x88) +toshiba_xm3301ta_device::toshiba_xm3301ta_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : + scsicd512_device(mconfig, XM3301TA, tag, owner, "TOSHIBA ", "CD-ROM XM-3301TA", "0272", 0x88) { } diff --git a/src/devices/bus/scsi/scsicd512.h b/src/devices/bus/scsi/scsicd512.h index 88dc772b3b9..81055348538 100644 --- a/src/devices/bus/scsi/scsicd512.h +++ b/src/devices/bus/scsi/scsicd512.h @@ -46,10 +46,10 @@ public: dec_rrd45_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); }; -class toshiba_xm3301_device : public scsicd512_device +class toshiba_xm3301ta_device : public scsicd512_device { public: - toshiba_xm3301_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); + toshiba_xm3301ta_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); }; class toshiba_xm5301_sun_device : public scsicd512_device @@ -77,7 +77,7 @@ public: }; DECLARE_DEVICE_TYPE(RRD45, dec_rrd45_device) -DECLARE_DEVICE_TYPE(XM3301, toshiba_xm3301_device) +DECLARE_DEVICE_TYPE(XM3301TA, toshiba_xm3301ta_device) DECLARE_DEVICE_TYPE(XM5301SUN, toshiba_xm5301_sun_device) DECLARE_DEVICE_TYPE(XM5401SUN, toshiba_xm5401_sun_device) DECLARE_DEVICE_TYPE(XM5701, toshiba_xm5701_device) |