mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
pcd_flop: New working software items
------------------ MS-DOS 2.11 boot disk MS-DOS 3.1 boot disk TDS diagnostics Lernprogramme (from "the collection")
This commit is contained in:
parent
b03fd3a88e
commit
dea62a8583
2 changed files with 69 additions and 0 deletions
66
hash/pcd_flop.xml
Normal file
66
hash/pcd_flop.xml
Normal file
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||
<!--
|
||||
license:CC0
|
||||
|
||||
This is a sample of what's out there.
|
||||
|
||||
-->
|
||||
|
||||
<softwarelist name="pcd_flop" description="Siemens PC-D disk images">
|
||||
|
||||
<software name="dos211">
|
||||
<description>MS-DOS 2.11 boot disk</description>
|
||||
<year>198?</year>
|
||||
<publisher>Siemens</publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="331560">
|
||||
<rom name="TEST.td0" size="331560" crc="7a518009" sha1="5d5c212d3b82f43eafd86bc6becdf88425def3db"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="dos31">
|
||||
<description>MS-DOS 3.1 boot disk</description>
|
||||
<year>198?</year>
|
||||
<publisher>Siemens</publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="453436">
|
||||
<rom name="D310B540.td0" size="453436" crc="fd86dd0a" sha1="5916eeee276cab00c6a516bc22d297d5b8b35852"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="tds">
|
||||
<description>TDS diagnostics</description>
|
||||
<year>1987</year>
|
||||
<publisher>Siemens</publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="371986">
|
||||
<rom name="TDS32_1.td0" size="371986" crc="b551339b" sha1="84d5377ee7e1e89b2bd4e5aebd2a1afd22fb49b2"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
<part name="flop2" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="381220">
|
||||
<rom name="TDS32_2.td0" size="381220" crc="50068d32" sha1="b7a451c264f11385e7c71567f12d3fd4058480f9"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="lern">
|
||||
<description>Lernprogramme</description>
|
||||
<year>1986</year>
|
||||
<publisher>Siemens</publisher>
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="323511">
|
||||
<rom name="lernpcd1.td0" size="323511" crc="bb65e283" sha1="c20d06d1f0c1106dc751557c497d2e321a51cead"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
<part name="flop2" interface="floppy_5_25">
|
||||
<dataarea name="flop" size="606404">
|
||||
<rom name="lernpcd2.td0" size="606404" crc="91eb3a80" sha1="37380f5becd5753292789c9436d2cf651d76debb"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
</softwarelist>
|
|
@ -554,6 +554,8 @@ void pcd_state::pcd(machine_config &config)
|
|||
|
||||
INPUT_BUFFER(config, "scsi_data_in", 0);
|
||||
m_scsi->set_slot_device(1, "harddisk", OMTI5100, DEVICE_INPUT_DEFAULTS_NAME(SCSI_ID_0));
|
||||
|
||||
SOFTWARE_LIST(config, "flop_list").set_original("pcd_flop");
|
||||
}
|
||||
|
||||
void pcd_state::pcx(machine_config &config)
|
||||
|
@ -568,6 +570,7 @@ void pcd_state::pcx(machine_config &config)
|
|||
|
||||
m_usart[1]->txd_handler().set_nop();
|
||||
|
||||
config.device_remove("flop_list");
|
||||
SOFTWARE_LIST(config, "flop_ls").set_original("pcx_flop");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue