summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/scsi/cdu76s.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/scsi/cdu76s.cpp')
-rw-r--r--src/devices/bus/scsi/cdu76s.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/devices/bus/scsi/cdu76s.cpp b/src/devices/bus/scsi/cdu76s.cpp
index 231445f1077..01860e7f31c 100644
--- a/src/devices/bus/scsi/cdu76s.cpp
+++ b/src/devices/bus/scsi/cdu76s.cpp
@@ -46,3 +46,17 @@ sony_cdu76s_device::sony_cdu76s_device(const machine_config &mconfig, const char
scsicd_device(mconfig, CDU76S, tag, owner, clock)
{
}
+
+ROM_START(cdu76s)
+ ROM_REGION(0x10000, "eprom", 0)
+ ROM_DEFAULT_BIOS("1.1c")
+ ROM_SYSTEM_BIOS( 0, "1.1c", "CDU76S firmware 1.1c" )
+ ROMX_LOAD("76s.1.1c.ic206", 0x00000, 0x10000, CRC(8a233f19) SHA1(5f3c3f1ec181cb7f18daea5c8c592f6910aac3b2), ROM_BIOS(0))
+ ROM_SYSTEM_BIOS( 1, "1.1a", "CDU76S firmware 1.1a" )
+ ROMX_LOAD("76s.1.1a.ic206", 0x00000, 0x10000, CRC(1df044f9) SHA1(8d1f6ccd6fb5e04b987b9aa21e602a21df7505a4), ROM_BIOS(1)) // 95.06.01
+ROM_END
+
+const tiny_rom_entry *sony_cdu76s_device::device_rom_region() const
+{
+ return ROM_NAME(cdu76s);
+}