mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00

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.
61 lines
1.5 KiB
XML
61 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>
|