mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
438a497c37
Get rid of a couple of copies of the CC0 text. Add header comment to CC0 files to remind people editing them what the terms are. Also add some missing XML headers. The header comments in layouts won't bloat the binary - they get stripped out before compressing, same as any other comments.
60 lines
1.5 KiB
XML
60 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
|
<!--
|
|
license:CC0
|
|
-->
|
|
<softwarelist name="tc4" description="Coleco Total Control 4 cartridges">
|
|
<!--
|
|
|
|
4 cartridges exist. There is no data, the game is determined by K pin connections.
|
|
- Football (K8, confirmed)
|
|
- Hockey (K4?)
|
|
- Soccer (K2?)
|
|
- Basketball (K1?)
|
|
|
|
Each cartridge also has a screen overlay attached, but MAME doesn't support this yet
|
|
through the softwarelist.
|
|
|
|
-->
|
|
|
|
<software name="baskball">
|
|
<description>Basketball</description>
|
|
<year>1981</year>
|
|
<publisher>Coleco</publisher>
|
|
<part name="cart" interface="tc4_cart">
|
|
<feature name="pinout" value="0x01" />
|
|
<dataarea name="nodata" size="0x10"></dataarea>
|
|
</part>
|
|
</software>
|
|
|
|
<software name="football">
|
|
<description>Football</description>
|
|
<year>1981</year>
|
|
<publisher>Coleco</publisher>
|
|
<part name="cart" interface="tc4_cart">
|
|
<feature name="pinout" value="0x08" />
|
|
<dataarea name="nodata" size="0x10"></dataarea>
|
|
</part>
|
|
</software>
|
|
|
|
<software name="hockey">
|
|
<description>Hockey</description>
|
|
<year>1981</year>
|
|
<publisher>Coleco</publisher>
|
|
<part name="cart" interface="tc4_cart">
|
|
<feature name="pinout" value="0x04" />
|
|
<dataarea name="nodata" size="0x10"></dataarea>
|
|
</part>
|
|
</software>
|
|
|
|
<software name="soccer">
|
|
<description>Soccer</description>
|
|
<year>1981</year>
|
|
<publisher>Coleco</publisher>
|
|
<part name="cart" interface="tc4_cart">
|
|
<feature name="pinout" value="0x02" />
|
|
<dataarea name="nodata" size="0x10"></dataarea>
|
|
</part>
|
|
</software>
|
|
|
|
</softwarelist>
|