From 3fe6777038846c840bd3047b9b6f84b315152657 Mon Sep 17 00:00:00 2001 From: Davide Cavalca Date: Sun, 28 Jun 2020 10:13:15 -0700 Subject: [PATCH] sgi_mips_hdd: add software list (#6865) New WORKING software list items ---- - IRIX 5.3 HDD install [davide125] --- hash/sgi_mips.xml | 2 +- hash/sgi_mips_hdd.xml | 28 ++++++++++++++++++++++++++++ src/mame/drivers/indy_indigo2.cpp | 5 ++--- 3 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 hash/sgi_mips_hdd.xml diff --git a/hash/sgi_mips.xml b/hash/sgi_mips.xml index bea5abfcd14..ec7d27866b0 100644 --- a/hash/sgi_mips.xml +++ b/hash/sgi_mips.xml @@ -3,7 +3,7 @@ - + diff --git a/hash/sgi_mips_hdd.xml b/hash/sgi_mips_hdd.xml new file mode 100644 index 00000000000..c9100ec56ad --- /dev/null +++ b/hash/sgi_mips_hdd.xml @@ -0,0 +1,28 @@ + + + + + + + IRIX 5.3 + 1994 + Silicon Graphics + + + + + + + + + diff --git a/src/mame/drivers/indy_indigo2.cpp b/src/mame/drivers/indy_indigo2.cpp index 6d7b38d4251..cd1d069e021 100644 --- a/src/mame/drivers/indy_indigo2.cpp +++ b/src/mame/drivers/indy_indigo2.cpp @@ -95,7 +95,6 @@ public: , m_hpc3(*this, "hpc3") , m_ioc2(*this, "ioc2") , m_rtc(*this, "rtc") - , m_softlist(*this, "softlist") , m_vino(*this, "vino") , m_dmsd(*this, "dmsd") , m_gio64(*this, "gio64") @@ -145,7 +144,6 @@ protected: required_device m_hpc3; required_device m_ioc2; required_device m_rtc; - required_device m_softlist; optional_device m_vino; optional_device m_dmsd; optional_device m_gio64; @@ -383,7 +381,8 @@ void ip24_state::ip24_base(machine_config &config) SGI_HAL2(config, m_hal2); EEPROM_93C56_16BIT(config, m_eeprom); - SOFTWARE_LIST(config, m_softlist).set_original("sgi_mips"); + SOFTWARE_LIST(config, "sgi_mips").set_original("sgi_mips"); + SOFTWARE_LIST(config, "sgi_mips_hdd").set_original("sgi_mips_hdd"); } void ip24_state::ip24(machine_config &config)