Commit graph

27 commits

Author SHA1 Message Date
Fabio Priuli
b416a585c9 fixed xml syntax. no whatsnew 2011-11-23 21:23:50 +00:00
Fabio Priuli
9af5ac7b32 someone has forgotten that ROM_LOAD16_WORD_SWAP is just an alias for ROMX_LOAD(..., LOADFLAGS). but his list, his wish. 2011-11-21 07:37:44 +00:00
Fabio Priuli
5c88e25d26 neogeo.xml: Fixed a couple of wrong descriptions (a quote had been put in front of two titles), plus moved loadflags at the end of <rom> for consistency with other lists. no whatsnew. 2011-11-20 21:25:15 +00:00
Miodrag Milanovic
22faa881af Haze: Added compatibility information in list (no whatsnew) 2011-11-13 06:55:50 +00:00
Miodrag Milanovic
211ec6be2d Fix for neogeo list by Haze (no whatsnew) 2011-11-12 14:35:00 +00:00
Miodrag Milanovic
1be53140ef neogeo code exposed for use by aes in mess by Haze (no whatsnew) 2011-11-12 08:42:03 +00:00
Olivier Galibert
5f05a7243e http://images.cheezburger.com/completestore/2010/8/23/07ed5547-0285-4cbc-9d54-35fa2f15227f.jpg
I'm not interested in fucking up 144, so let's go back to a reasonable
state.  But we *will* do something sane for 145.
2011-11-10 16:43:07 +00:00
Olivier Galibert
66a7a12491 placeholders 2011-11-10 16:42:32 +00:00
Olivier Galibert
be2ada81fd http://www.flickr.com/photos/discoweasel/2851814771/ 2011-11-08 17:10:35 +00:00
Angelo Salese
aec813c34e Converted neogeo mvs driver to use software lists in preparation for
multislot support [David Haywood]

Please note: launching convention for Neo-Geo games is now the same as
MESS software lists "mame neogeo gamename" or "mame neogeo -cart
gamename".
2011-11-06 18:26:09 +00:00
Miodrag Milanovic
8449a9cbdc - Removing MD5 support in ROMLOAD_* [Oliver Stoneberg]
- Various core and tools memory leaks fixes [Oliver Stoneberg]
2011-07-31 15:46:18 +00:00
Angelo Salese
dd27d2818a Fixed Final Arch and Sando-R multi cart support [Angelo Salese] 2011-05-24 15:41:00 +00:00
Angelo Salese
8a400aa919 Fixed Final Arch failing the IC13 test [Angelo Salese] 2011-05-24 15:18:44 +00:00
Angelo Salese
546f130340 XML work, nw 2011-05-21 12:29:55 +00:00
Scott Stone
c741b8cfce Preliminary softwarelist for STV's multi-cart format. [Tafoid] 2011-05-20 03:05:54 +00:00
Angelo Salese
c0c52888ed Cleaned up one thing 2011-05-18 23:30:54 +00:00
Angelo Salese
de9c2b6e5e Implemented multi-cart support to ST-V driver [Angelo Salese] 2011-05-18 23:22:43 +00:00
Angelo Salese
415f52befb Blame Micko ... 2011-05-04 19:05:02 +00:00
Angelo Salese
b1931a6769 Ok, enough Vectrshit for today 2011-05-04 18:56:54 +00:00
Fabio Priuli
5cb1e6132c megatech.xml: removed bogus attribute (we don't use merge to mark clones) 2011-03-27 11:42:21 +00:00
Fabio Priuli
382e3998b1 minor DTD change to have fully correct xml lists (the ROM_FILL correspondent concept was not compliant with the DTD). no whatsnew. 2011-03-27 07:08:31 +00:00
Fabio Priuli
f25b3a9b88 softlist.c: split the <info> field (added some time ago to handle compatibility requirements) into <info> and <sharedfeat>.
the former stays tied to the whole software entry, the latter gets inherited by each part. 

out of whatsnew 1: Arbee, this change finalizes the xml format once for all. feel free to create an apple II or ||gs list, if you are interested

out of whatsnew 2: 
A bunch of comments about this change: with the latest code, each software entry can store three different kind of 'extrainfo' strings. They are thought to be used in specific cases, so let me briefly explain the big picture behind them.

1. <feature> fields: these are well established in current lists. they belong to a <part> element (i.e. a specific cart or cd disc or floppy disk) and they can be used to store hardware details that belongs to that specific <part>. typically, we have used these to describe the pcb_type of a cart (e.g. the board type in NES carts or in AES carts, to remove the need of specific mappers), so that at loading time they can be checked and the emulation can be setup accordingly. However, some lists (e.g. snes.xml and, in a few months, nes.xml as well) use these more creatively, to e.g. document the exact chip locations on the pcb

examples
<feature name="pcb_type" value="MMC3C"/>
<feature name="u3" value="SRAM-64M"/>

----------
2. <sharedfeat> fields: these are listed in the main <software> entry, but get stored together with the <feature> of each part of this software. E.g. if your software entry consists of 9 floppies, these shared features will be inherited by *all* the disks. The typical usage for this is to list the compatibility requirements of the software entry, e.g. a PAL system, or the presence of an expansion card, or the presence of additional RAM. These compatibility settings have to be manually parsed in the loading code by the driver author, but it makes more sense to define them only once for each software entry than to copy and paste it for each <part> (and believe me, it makes a difference both in terms of avoiding redundant lines and in terms of time necessary to create the xml list itself, when you deal with hundreds of multidisk entries like in the forthcoming pc8801 floppy list). consider this as a shortcut for 1. when you have multidisk software.

examples
<sharedfeat name="compatibility" value="EUR-JPN"/>  (the value can be freely chosen by the driver author as long as he also add the correct values in the loading routine ;) )
<sharedfeat name="addon" value="DVC"/> (this can be of use in cdi titles which won't work without the DigitalVideoCard expansion)

----------
3. <info> fields: these belongs directly to the main <software> entry, like the <sharedfeat>, but they do get stored in the main software entry, not with the <part>. They should be used to store additional info which might be of use for frontends, but that are not strictly necessary for emulation (if you have to describe some fundamental hardware characteristic that has to be checked during emulation, then you should use <sharedfeat> not <info>). Possible examples include the name of the development team, or the serial number of the cart, etc but it's up to the list creator to decide what to use this for and if to use it at all

examples
<info name="developer" value="Treasure"/>
<info name="serial" value="NUS-NSMJ-JPN"/>

As already said, imho the format can now be considered finalized. I cannot really think of anything else that we might want to include in the format, without getting redundant. 

p.s. In fact, some small change is still required in the core to fully support the new fields (e.g. at the moment <info> are not loaded by the core), but the xml format won't be touched.
2011-03-27 00:11:42 +00:00
Fabio Priuli
c38b1c2c5e New games added or promoted from NOT_WORKING status
---------------------------------------------------

California Games (Mega-Tech) [f205v, incog, Smitdogg, The Dumping Union]
2011-02-08 07:50:02 +00:00
Fabio Priuli
2fc75fcd45 Fix for Haze's (or Kale's) lazyness ;P
This should be included in the release as well
2011-01-27 08:16:13 +00:00
Fabio Priuli
40181d18cc megatech.xml: Fixed the few remaining issue [David Haywood] 2011-01-27 08:11:45 +00:00
Scott Stone
e214465d35 Converted remaining Mega-Tech sets to XML and added to megatech.xml.
Comment:  There are still a few issues with some games where the data might need refining.  The following sets do not work, even as a 1 slot game but work as normal sets;  (mt_tetri, mt_gng, mt_fwld, mt_srbb)
2011-01-27 02:39:27 +00:00
Angelo Salese
a4b743ea1e Added a preliminary Softlist support for Sega Megatech, that allows multi-cart support [David Haywood]
- SoftList is incompelte, I hate working with the XML, if somebody wants to add the remaining titles, be my guest
 - SMS games have issues, the CPU isn't being properly reset (or something) when moving between games, so stick to only a single SMS game for now or the z80 will crash.  
 It used to work, but the code has been out of use for a while.
 - syntax is MAME megatech -cart1 mt_beast -cart2 mt_soni2 -cart8 mt_shar2
2011-01-26 00:51:01 +00:00