mtx_cfx: Replace HDD with Compact Flash device.

This commit is contained in:
Nigel Barnes 2022-12-12 19:51:05 +00:00
parent e09c883434
commit 852000bd4e
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ license:CC0
<description>CP/M 54K</description>
<year>201?</year>
<publisher>&lt;unknown&gt;</publisher>
<part name="hdd" interface="ide_hdd">
<part name="hdd" interface="ata_cf">
<diskarea name="harddriv">
<disk name="cpm54" sha1="cf4a80e6aa229b93c1def5e89e2ee76fe9cba9a7" writeable="yes" />
</diskarea>
@ -21,7 +21,7 @@ license:CC0
<description>CP/M 59K</description>
<year>201?</year>
<publisher>&lt;unknown&gt;</publisher>
<part name="hdd" interface="ide_hdd">
<part name="hdd" interface="ata_cf">
<diskarea name="harddriv">
<disk name="cpm59" sha1="24498c0c954eac2c4bab2e3c5317ceeddef63578" writeable="yes" />
</diskarea>
@ -32,7 +32,7 @@ license:CC0
<description>Fuzix OS</description>
<year>2019</year>
<publisher>Etched Pixels</publisher>
<part name="hdd" interface="ide_hdd">
<part name="hdd" interface="ata_cf">
<diskarea name="harddriv">
<disk name="fuzix" sha1="ff1934600cf630d11d904ef0915a596ff89fab69" writeable="yes" />
</diskarea>
@ -43,7 +43,7 @@ license:CC0
<description>Hex-Train</description>
<year>2016</year>
<publisher>Andy Key</publisher>
<part name="hdd" interface="ide_hdd">
<part name="hdd" interface="ata_cf">
<diskarea name="harddriv">
<disk name="hextrain" sha1="da8ad4944eff3e34254f4d9685b00c22c159b543" writeable="yes" />
</diskarea>

View File

@ -52,7 +52,7 @@ void mtx_cfx_device::device_add_mconfig(machine_config &config)
m_pia->out_pb_callback().set([this](uint8_t data) { m_ide_data = (m_ide_data & 0x00ff) | (data << 8); });
m_pia->out_pc_callback().set(FUNC(mtx_cfx_device::portc_w));
ATA_INTERFACE(config, m_ide).options(ata_devices, "hdd", nullptr, false);
ATA_INTERFACE(config, m_ide).options(ata_devices, "cf", nullptr, false);
}