From c16a80ce1c5a0c3daa24559e11d0b506eeb60743 Mon Sep 17 00:00:00 2001 From: angelosa Date: Mon, 15 Jul 2024 11:32:07 +0200 Subject: [PATCH] microsoft/xbox.cpp: hookup HDD SW list New software list items marked not working ------------------------------------------ OEM Dashboard [archive.org] --- hash/xbox_hdd.xml | 26 ++++++++++++++++++++++++++ src/mame/microsoft/xbox.cpp | 4 ++++ 2 files changed, 30 insertions(+) create mode 100644 hash/xbox_hdd.xml diff --git a/hash/xbox_hdd.xml b/hash/xbox_hdd.xml new file mode 100644 index 00000000000..01703bca491 --- /dev/null +++ b/hash/xbox_hdd.xml @@ -0,0 +1,26 @@ + + + + + + + OEM Dashboard + 2001 + Microsoft + + + + + + + + + diff --git a/src/mame/microsoft/xbox.cpp b/src/mame/microsoft/xbox.cpp index 42a581c5eb4..002538add5e 100644 --- a/src/mame/microsoft/xbox.cpp +++ b/src/mame/microsoft/xbox.cpp @@ -21,6 +21,8 @@ #include "bitmap.h" +#include "softlist_dev.h" + namespace { @@ -177,6 +179,8 @@ void xbox_state::xbox(machine_config &config) SPEAKER(config, "mono").front_center(); OHCI_GAME_CONTROLLER(config, "ohci_gamepad", 0); + + SOFTWARE_LIST(config, "xbox_hdd_list").set_original("xbox_hdd"); }