Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions hash/specnext_sd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0"?>
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
<!--
license:CC0-1.0
-->

<!-- Spectrum Next software is typically distributed as loose files to be placed on SD cards for use with the system
This Software List contains those loose files put into SD card images as the system would expect -->

<softwarelist name="specnext_sd" description="Spectrum Next SD Card images">

<!-- Operating System images -->

<software name="sys2411">
<description>System/Next 24.11</description>
<year>2024</year>
<publisher>SpecNext Ltd.</publisher>
<part name="card" interface="sdcard">
<diskarea name="harddriv">
<disk name="sys2411" sha1="947b7598a034258a3ead994eb3e96f3cada896a8" writeable="yes" />
</diskarea>
</part>
</software>

<!-- Software images -->

<software name="fiona">
<description>Fiona's Flight</description>
<year>2025</year>
<publisher>rcallenbach</publisher>
<part name="card" interface="sdcard">
<diskarea name="harddriv">
<disk name="fiona" sha1="4e55ef0fb7323bc9d97ac3bb39d13f6825005709" writeable="yes" />
</diskarea>
</part>
</software>

</softwarelist>
2 changes: 2 additions & 0 deletions src/mame/sinclair/specnext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3829,6 +3829,8 @@ void specnext_state::tbblue(machine_config &config)
m_copper->out_nextreg_cb().set([this](offs_t offset, u8 data) { m_next_regs.write_byte(offset, data); });
m_copper->set_in_until_pos_cb(FUNC(specnext_state::copper_until_pos_r));

SOFTWARE_LIST(config, "sd_list").set_original("specnext_sd");

config.device_remove("snapshot");
}

Expand Down
Loading