From fa99348226fa9cd98cddde795566ba73bd2d9a2e Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sun, 25 Sep 2022 11:05:29 +0200 Subject: [PATCH] mtu130: Add initial software list --- hash/mtu130_flop.xml | 78 ++++++++++++++++++++++++++++++++++++++++ src/mame/misc/mtu130.cpp | 3 ++ 2 files changed, 81 insertions(+) create mode 100644 hash/mtu130_flop.xml diff --git a/hash/mtu130_flop.xml b/hash/mtu130_flop.xml new file mode 100644 index 00000000000..a3c4af0579f --- /dev/null +++ b/hash/mtu130_flop.xml @@ -0,0 +1,78 @@ + + + + + + + Demonstration disk + 1982 + Micro Technology Unlimited + + + + + + + + + CODOS 2.0 + 1982 + Micro Technology Unlimited + + + + + + + + + BASIC 1.0 and extra libs + 1982 + Micro Technology Unlimited + + + + + + + + + BASIC 1.5 + 1982 + Micro Technology Unlimited + + + + + + + + + Datamover support disk + ? + Micro Technology Unlimited + + + + + + + + + MultI-O support disk + 1983 + Micro Technology Unlimited + + + + + + + + + + diff --git a/src/mame/misc/mtu130.cpp b/src/mame/misc/mtu130.cpp index b3232f3fdb6..59594ad7efa 100644 --- a/src/mame/misc/mtu130.cpp +++ b/src/mame/misc/mtu130.cpp @@ -39,6 +39,7 @@ #include "sound/dac.h" #include "emupal.h" #include "screen.h" +#include "softlist_dev.h" #include "speaker.h" @@ -673,6 +674,8 @@ void mtu130_state::mtu130(machine_config &config) MTU130_ROM(config, m_roms[1], m_romdata, 0x2000); MTU130_ROM(config, m_roms[2], m_romdata, 0x1000); MTU130_ROM(config, m_roms[3], m_romdata, 0x0000); + + SOFTWARE_LIST(config, "flop_list").set_original("mtu130_flop"); }