mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
msx1: added a cass list, containing expansion tapes for Albatross. no whatsnew.
I don't plan to add more tapes any time soon (I simply did not want to lose these two), so anyone willing to add more elements to the list would be welcome....
This commit is contained in:
parent
15f977e122
commit
c3f0419324
4 changed files with 38 additions and 2 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -138,6 +138,7 @@ hash/mo5_cart.xml svneol=native#text/xml
|
|||
hash/mpz80.xml svneol=native#text/xml
|
||||
hash/msx.hsi svneol=native#text/plain
|
||||
hash/msx1_cart.xml svneol=native#text/xml
|
||||
hash/msx1_cass.xml svneol=native#text/xml
|
||||
hash/msx2.hsi svneol=native#text/plain
|
||||
hash/msx2_cart.xml svneol=native#text/xml
|
||||
hash/mz2000_cass.xml svneol=native#text/xml
|
||||
|
|
|
@ -13362,7 +13362,7 @@ kept for now until finding out what those bytes affect...
|
|||
</software>
|
||||
|
||||
<software name="baduk">
|
||||
<description>Zemminx Baduk Gyosil (Kor)</description>
|
||||
<description>Zemmix Baduk Gyosil (Kor)</description>
|
||||
<year>19??</year>
|
||||
<publisher><unknown></publisher>
|
||||
<info name="alt_title" value="재믹스바둑교실" />
|
||||
|
|
32
hash/msx1_cass.xml
Normal file
32
hash/msx1_cass.xml
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||
|
||||
<softwarelist name="msx1_cass" description="MSX1 cassettes">
|
||||
|
||||
<software name="albatex1">
|
||||
<description>Albatross - Extended Course 1 (Jpn)</description>
|
||||
<year>1986</year>
|
||||
<publisher>Nihon Telenet</publisher>
|
||||
<info name="alt_title" value="アルバトロス" />
|
||||
<info name="usage" value="Requires the Albatross cart" />
|
||||
<part name="cass1" interface="msx_cass">
|
||||
<dataarea name="cass" size="8965">
|
||||
<rom name="albatross (1986)(telenet japan)(jp)(tape 1 of 2)[extended course].cas" size="8965" crc="1cc84251" sha1="423e821cb1ebf403acb83c3a91c05834bb49b191" offset="0" />
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="albatex2">
|
||||
<description>Albatross - Extended Course 2 (Jpn)</description>
|
||||
<year>1986</year>
|
||||
<publisher>Nihon Telenet</publisher>
|
||||
<info name="alt_title" value="アルバトロス" />
|
||||
<info name="usage" value="Requires the Albatross cart" />
|
||||
<part name="cass1" interface="msx_cass">
|
||||
<dataarea name="cass" size="10031">
|
||||
<rom name="albatross (1986)(telenet japan)(jp)(tape 2 of 2)[extended course].cas" size="10031" crc="f962dfc9" sha1="a46e7df56abd162a529aabc75027ae0265a5fa47" offset="0" />
|
||||
</dataarea>
|
||||
</part>
|
||||
</software>
|
||||
|
||||
</softwarelist>
|
|
@ -1031,7 +1031,7 @@ static const cassette_interface msx_cassette_interface =
|
|||
fmsx_cassette_formats,
|
||||
NULL,
|
||||
(cassette_state)(CASSETTE_PLAY),
|
||||
NULL,
|
||||
"msx_cass",
|
||||
NULL
|
||||
};
|
||||
|
||||
|
@ -1104,6 +1104,7 @@ static MACHINE_CONFIG_START( msx, msx_state )
|
|||
|
||||
/* Software lists */
|
||||
MCFG_SOFTWARE_LIST_ADD("cart_list","msx1_cart")
|
||||
MCFG_SOFTWARE_LIST_ADD("cass_list","msx1_cass")
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -1202,6 +1203,8 @@ static MACHINE_CONFIG_START( msx2, msx_state )
|
|||
|
||||
/* Software lists */
|
||||
MCFG_SOFTWARE_LIST_ADD("cart_list","msx2_cart")
|
||||
MCFG_SOFTWARE_LIST_COMPATIBLE_ADD("msx1_list","msx1_cart")
|
||||
MCFG_SOFTWARE_LIST_ADD("cass_list","msx1_cass")
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue