mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) osbexec: Added floppy software list. [Dave Dunfield, The Don Maslin Archive]
This commit is contained in:
parent
269fd6c2a4
commit
6fa89de698
3 changed files with 69 additions and 0 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -204,6 +204,7 @@ hash/orion_cass.xml svneol=native#text/xml
|
||||||
hash/orion_flop.xml svneol=native#text/xml
|
hash/orion_flop.xml svneol=native#text/xml
|
||||||
hash/orionpro_flop.xml svneol=native#text/xml
|
hash/orionpro_flop.xml svneol=native#text/xml
|
||||||
hash/osborne1.xml svneol=native#text/xml
|
hash/osborne1.xml svneol=native#text/xml
|
||||||
|
hash/osborne2.xml svneol=native#text/xml
|
||||||
hash/p500_flop.xml svneol=native#text/xml
|
hash/p500_flop.xml svneol=native#text/xml
|
||||||
hash/partner_cass.xml svneol=native#text/xml
|
hash/partner_cass.xml svneol=native#text/xml
|
||||||
hash/partner_flop.xml svneol=native#text/xml
|
hash/partner_flop.xml svneol=native#text/xml
|
||||||
|
|
65
hash/osborne2.xml
Normal file
65
hash/osborne2.xml
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||||
|
<softwarelist name="vixen" description="Osborne 2 Executive diskettes">
|
||||||
|
|
||||||
|
<software name="system">
|
||||||
|
<description>System Disk</description>
|
||||||
|
<year>198?</year>
|
||||||
|
<publisher>Osborne</publisher>
|
||||||
|
|
||||||
|
<part name="flop1" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="142061">
|
||||||
|
<rom name="cpmplus1.imd" size="142061" crc="581a4e02" sha1="00928887a48bd14910eb432df55f24554e2f72c9" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
|
||||||
|
<part name="flop2" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="191176">
|
||||||
|
<rom name="cpmplus2.imd" size="191176" crc="ddd36ec1" sha1="741653c8eaeb706a5d2229b98d79d5da53240b8c" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
|
||||||
|
<part name="flop3" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="198338">
|
||||||
|
<rom name="cpmplus3.imd" size="198338" crc="352b00ce" sha1="d632c50ef0b2c5eeea23d3d77f6fb73131b0b0e5" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
</software>
|
||||||
|
|
||||||
|
<software name="cpm30">
|
||||||
|
<description>CP/M 3.0 System Disk</description>
|
||||||
|
<year>198?</year>
|
||||||
|
<publisher>Osborne</publisher>
|
||||||
|
|
||||||
|
<part name="flop1" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="66602">
|
||||||
|
<rom name="ose-cpma.td0" size="66602" crc="534dbaa1" sha1="42ab459f311430bc53e9dc86faa013e016530641" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
|
||||||
|
<part name="flop2" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="95534">
|
||||||
|
<rom name="ose-cpmb.td0" size="95534" crc="50fc6882" sha1="5f9724c24c147c3a3f7b029ebf6b84c312347ca2" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
|
||||||
|
<part name="flop3" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="111014">
|
||||||
|
<rom name="ose-cpmc.td0" size="111014" crc="f083408a" sha1="724bdd22e0a74e811950cf4d230cc2cb563d1dee" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
</software>
|
||||||
|
|
||||||
|
<software name="psystem">
|
||||||
|
<description>p-System</description>
|
||||||
|
<year>198?</year>
|
||||||
|
<publisher>UCSD</publisher>
|
||||||
|
|
||||||
|
<part name="flop1" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="107630">
|
||||||
|
<rom name="ose-psys.td0" size="107630" crc="1037a24b" sha1="3d33597d05b1b7b2eb543d6ed0f3b7637222e18a" offset="0" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
</software>
|
||||||
|
|
||||||
|
</softwarelist>
|
|
@ -604,6 +604,9 @@ static MACHINE_CONFIG_START( osbexec, osbexec_state )
|
||||||
/* internal ram */
|
/* internal ram */
|
||||||
MCFG_RAM_ADD(RAM_TAG)
|
MCFG_RAM_ADD(RAM_TAG)
|
||||||
MCFG_RAM_DEFAULT_SIZE("136K") /* 128KB Main RAM + RAM in ROM bank (8) */
|
MCFG_RAM_DEFAULT_SIZE("136K") /* 128KB Main RAM + RAM in ROM bank (8) */
|
||||||
|
|
||||||
|
/* software lists */
|
||||||
|
MCFG_SOFTWARE_LIST_ADD("flop_list", "osborne2")
|
||||||
MACHINE_CONFIG_END
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue