Gamoover

Forums " WORKSHOP" => Emulateurs, Frontends & Distributions => Mala => Discussion démarrée par: Solkan le Mercredi 23 Juin 2010, 10:49:19 AM

Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Mercredi 23 Juin 2010, 10:49:19 AM
Ayant récemment mis en place une Mame-cab avec Mala FE et désireux de faire tourner côte à côte Mame, ZiNc, U64emu, M2Emulator, CPS3Emulator, Demul, Supermodel, ... pour tirer parti des émulateurs les plus performants pour chaque système, j'ai été contraint de bidouiller un peu tout ce beau monde pour concevoir des listes multi-émulateurs (qui n'existent pas nativement dans Mala).
Pour celà, j'ai suivi le topic de BYOAC : http://forum.arcadecontrols.com/index.php?topic=68419.0 et je me permet de vous en donner ma version.

Le principe :
Utiliser un seul "émulateur virtuel" dans Mala qui sera paramétré dans le "MAME Config" de Mala et qui permettra de lancer le bon émulateur en fonction de la rom choisie.
Cet émulateur est un fichier de commande qui fera le switch d'émulateur en fonction d'un critère unique : l'emplacement de la Rom.
L'avantage principal est que la "Main Games List" de Mala est unique et contient toutes les roms de tous les émulateurs.

Première étape - tri des roms :
Il s'agira tout d'abord de trier ses roms en sous répertoires en fonction de l'émulateur sur lequel on veut l'exécuter.
Pour ce faire, je ne peux que vous recommander d'utiliser "Romcenter" qui permet (entre autre) de déplacer les fichiers roms valides pour un émunateur choisi : http://www.romcenter.com/

(https://gamoovernet.pixhotel.fr/pics_gamoovernet890px/20131017114646-Solkan-tutomala-solkan-1.png) (https://gamoovernet.pixhotel.fr/pics/20131017114646-Solkan-tutomala-solkan-1.png)

Attention, une roms ne peut se situer à deux endroits différents sous peine de lancer un émulateur non prévu.

Deuxième étape - Configuration des émulateurs:
Tout d'abord, je suggère de placer tous les émulateurs dans un répertoire spécifique, celà facilite la configuration du LaunchEmu.cmd (voir plus bas)

(https://gamoovernet.pixhotel.fr/pics_gamoovernet890px/20131017114711-Solkan-tutomala-solkan-2.png) (https://gamoovernet.pixhotel.fr/pics/20131017114711-Solkan-tutomala-solkan-2.png)

Maintenant que les Roms sont dans un répertoire spécifique, il va falloir configurer chaque émulateur pour qu'il lance ses roms en ligne de commande pour tenir compte de cet emplacement.
Je ne vais pas m'éterniser sur ce sujet car celà dépend vraiment de chaque émulateur.
Sachez simplement que
- pour CPS3emulateur et M2emulator, celà se trouve dans le fichier emulator.ini.
- pour ZiNc, c'est un fichier qui s'appelle zinc.cfg et/ou zincconfig.cfg
- pour Demul, c'est un fichier qui s'appelle demul.ini.
vous lirez dans l'annexe comment configurer M2Emulator (c'est pareil pour CPS3emulateur et Demul), Zinc et U64emu pour lancer les jeux en ligne de commande.

Troisième étape - Configuration de Mala:
Dans les options de Mala, nous allons configurer l'émulateur Mame de la manière suivante
- Indiquer le fichier "LaunchEmu.cmd" dans l'exécutable Mame (1)
- Référencer le fichier XML listant les jeux émulés par notre émulateur Virtuel
(2) (cf Remarques supplémentaires ci-dessous)
- Spécifier l'emplacement de nos roms (3) . Attention, il faut bien préciser le répertoire parent en cochant la case "Search in subfolders" (4)
- Préciser qu'on envoi le nom de la rom (%rom%) mais aussi son emplacement (%path%) dans la ligne de commande (5) . Attention, il faut un espace entre %rom% et %path%, ce sont deux arguments différents

(https://gamoovernet.pixhotel.fr/pics_gamoovernet890px/20131017114730-Solkan-tutomala-solkan-3.png) (https://gamoovernet.pixhotel.fr/pics/20131017114730-Solkan-tutomala-solkan-3.png)

Lorsque cette configuration de Mala sera validée, Mala vous demandera s'il faut refraichir la liste "Main game List". Il faut évidemment accepter. Ce rafraichissement de la liste principale devra être effectuée si vous déplacez des roms plus tard (pour optimiser le choix de l'émulateur par exemple).

quatrième étape - "L'émulateur virtuel" LaunchEmu.cmd :
Créez dans votre répertoire contenant les émulateurs un fichier de commande LaunchEmu.cmd. En voici un exemple de contenu@echo off

SET EMUPATH=I:\Jeux\Emulation
SET ROMPATH=%EMUPATH%\_ROMS
SET EXEPATH=%EMUPATH%\_EMULATEURS

if "%2" == "%ROMPATH%\M2Emulator" goto m2
if "%2" == "%ROMPATH%\pc_games" goto pc_games
if "%2" == "%ROMPATH%\Daphne" goto daphne
if "%2" == "%ROMPATH%\FBA" goto fba
if "%2" == "%ROMPATH%\ZiNc" goto zinc
if "%2" == "%ROMPATH%\Raine" goto raine
if "%2" == "%ROMPATH%\Ultra64" goto u64
if "%2" == "%ROMPATH%\CPS3Emulator" goto cps3emulator
if "%2" == "%ROMPATH%\Demul_naomi" goto demul_naomi
if "%2" == "%ROMPATH%\Demul_dc" goto demul_dc
if "%2" == "%ROMPATH%\Demul_aw" goto demul_aw
if "%2" == "%ROMPATH%\SuperModel" goto supermodel

cd %EXEPATH%\Mame_0.143b
mame.exe %1
goto emuLaunched

:u64
cd %EXEPATH%\U64emu
if "%1" == "kinst" Copy closemul_(k1).ini closemul.ini
if "%1" == "kinst2" Copy closemul_(k2).ini closemul.ini
closemul.exe ESC u64emu.exe
goto emuLaunched

:cps3emulator
cd %EXEPATH%\cps3emulator
closemul.exe emulator.exe %1
goto emuLaunched

:fba
cd %EXEPATH%\FBA
fba.exe %1
goto emuLaunched

:raine
cd %EXEPATH%\Raine
Raine32.exe -nogui -g %1
goto emuLaunched

:zinc
cd %EXEPATH%\ZiNc
cmd-launch7.exe %1
goto emuLaunched

:m2
cd %EXEPATH%\M2Emulator
closemul.exe emulator.exe zip %1 rar
goto emuLaunched

:demul_naomi
cd %EXEPATH%\Demul
closemul.exe demul.exe -run=naomi -rom=%1
goto emuLaunched

:demul_dc
cd %EXEPATH%\Demul
demul.exe -run=dc -rom=%1
goto emuLaunched

:demul_aw
cd %EXEPATH%\Demul
closemul.exe demul.exe -run=atomiswave -rom=%1
goto emuLaunched

:supermodel
cd %EXEPATH%\SuperModel
supermodel.exe %2\%1.zip
goto emuLaunched

:pc_games
cd %EXEPATH%\pc_games
%1.cmd
goto emuLaunched

:daphne
SET DAPHNE=%EXEPATH%\daphne\daphne.exe
cd %EXEPATH%\daphne
if "%1" == "lair" start/wait %daphne% dle20 vldp -framefile %EXEPATH%\daphne\framefile\lair.txt -fullscreen -blank_skips -blank_searches -preset 1
if "%1" == "lair2" start/wait %daphne% lair2 vldp -framefile %EXEPATH%\daphne\framefile\lair2.txt -fullscreen -blank_skips -blank_searches -preset 1
if "%1" == "galaxy" start/wait %daphne% galaxy vldp -framefile %EXEPATH%\daphne\framefile\GalaxyRanger.txt -fullscreen -blank_skips -blank_searches -preset 1
if "%1" == "ace" start/wait %daphne% ace vldp -framefile %EXEPATH%\daphne\framefile\ace.txt -fullscreen -blank_skips -blank_searches -preset 1
goto emuLaunched

:emuLaunched
exit


C'est ici que se présente le coeur même de l'astuce : en fonction de l'emplacement de la rom, l'émulateur ad-hoc est lancé.

Vous pouvez vérifier le bon fonctionnement de notre émulateur virtuel en l'appelant directement en ligne de commande
LaunchEmu.cmd mslug2 I:\Jeux\Emulation\_ROMS\FBA
pour lancer la rom Metal Slug 2 avec FBA

Vous pouvez maintenant peupler vos listes de jeux (par catégorie par exemple) sans vous préoccuper de l'émulateur  ^-^

--------------------------
Remarques supplémentaires :
* Si la rom n'est pas émulée par Mame, il faut ajouter des lignes la décrivant dans le fichier d'info "gameList.xml"
<game name="ace2">
<description>Space Ace</description>
<year>1984</year>
<manufacturer>Cinematronics</manufacturer>
<driver status="good" emulation="good"/>
</game>


* De même, si Mame n'émule pas bien une rom, et que vous choississez de n'afficher que les "Working Games", il faudra modifier son statut d'émulation en good ; <driver status="good" emulation="good"/> pour que le jeu apparaisse (typiquement, c'est le cas des jeux Model 2)
(https://gamoovernet.pixhotel.fr/pics_gamoovernet890px/20131017114749-Solkan-tutomala-solkan-4.png) (https://gamoovernet.pixhotel.fr/pics/20131017114749-Solkan-tutomala-solkan-4.png)
<game name="vf2" sourcefile="model2.c">
<description>Virtua Fighter 2 (Version 2.1)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>


* De manière générale, il est bon de créer un fichier xml contenant les descriptifs de ces roms non émulées parfaitement par Mame mais que vous désirez faire tourner avec un autre émulateur (Daphne, M2emulator, ...). La raison de ce fichier supplémentaire est simple : gameList.xml peut être régénéré involontairement/maladroitement et toutes vos modifications seraient perdues.
Pour obtenir un fichier xml contenant mame.xml et votre config supplémentaire (additional.xml), lancez la commande
copy mame.xml+additional.xml gameList.xml
et précisez ce nouveau fichier "gameList.xml" dans le "Rom Info File (XML)" (Mame config) de Mala.

* Les GameLists maison ne sont pas corrigées à rebours. Il vous faudra malheureusement les refaire avec le nouvel emplacement des roms. Il en sera de même si vous "déplacer" une roms vers un autre émulateur : il faudra supprimer puis à nouveau ajouter le jeu aux listes dans lesquelles vous voulez la voir apparaitre.

* Si le jeu à émuler ne se lance pas avec une rom zippée (Daphne, u64emu), il vous faudra créer un faux fichier zip dans le répertoire ad-hoc pour que le jeu apparaissent dans la Main List.


-------
L'annexe expliquant la config de M2Emulator, ZiNc et de U64emu va suivre.
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Iro le Mercredi 23 Juin 2010, 10:59:21 AM
Super , merci !!
Il fera un bon complément de celui de funky  ^-^
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: ɐɹqoƆ‾ɥƃᴉH le Mercredi 23 Juin 2010, 11:03:58 AM
^-^ ^-^

Par contre, si je peux me permettre une petite remarque : les captures d'écran en jpeg c'est moche, la compression jpeg est foireuse pour les textes sur fond uni... Il est préférable d'utiliser du PNG pour ce genre de chose... Ce n'est qu'un détail, c'est pas grave non plus, c'est plus pour une prochaine fois :D
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: funkycochise le Mercredi 23 Juin 2010, 11:16:18 AM
très intéressant  ^-
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Mercredi 23 Juin 2010, 11:35:03 AM
Annexe 1 : Lancer U64Emu en Ligne de commande
remarque : Celà peut être généralisé pour d'autres Front end.

U64emu est un émulateur spécifique à deux jeux mais pas des moindres : Killer Instinct et Killer Instinct 2.
Il n'accepte malheureusement pas le démarrage de roms en ligne de commande. C'est pourquoi nous allons utiliser un sympatique petit soft qui va nous permettre de "piloter" l'interface de U64Emu : Closemul (Télécharger ici : http://vertrixgame.com/downloads_f57Sv5a2/Closemul.zip)

Closemul fonctionne sur base de fichiers de configurations et il nous en faut donc un par jeu :

Closemul_(k1).ini
[Parameters]
Exit Key 1=27
Exit Key 2=
Extract=
Extracted Ext 2=
Pre Command=
Post Command=
Mount Program=
Mount Device=
Mount Parameters=
Registry File=
Automation="U64Emu - V3.05"
Automation Steps="LEFT,SPACE,LEFT,UP,ENTER,RIGHT,RIGHT,ENTER"
Automation Delay="250"
Program=
Program 2=
Param Before File=
Param After File=
File=
Snap 1 Search=
Snap 2 Search=
Snap Extension=
Snap Source Folder=
Snap 1 Dest Folder=
Snap 2 Dest Folder=
Quit Management=
Quit TimeOut=
Disable Quotes=


Closemul_(k2).ini
[Parameters]
Exit Key 1=27
Exit Key 2=
Extract=
Extracted Ext 2=
Pre Command=
Post Command=
Mount Program=
Mount Device=
Mount Parameters=
Registry File=
Automation="U64Emu - V3.05"
Automation Steps="LEFT,SPACE,LEFT,DOWN,ENTER,RIGHT,RIGHT,ENTER"

Automation Delay="250"
Program=
Program 2=
Param Before File=
Param After File=
File=
Snap 1 Search=
Snap 2 Search=
Snap Extension=
Snap Source Folder=
Snap 1 Dest Folder=
Snap 2 Dest Folder=
Quit Management=
Quit TimeOut=
Disable Quotes=


Et donc, pour lancer les jeux comme le fait Mame (i.e., "Mame.exe nom_de_rom"), il nous faut un autre petit "émulateur virtuel" : u64emu.cmd


cd I:\Jeux\Emulation\_EMULATEURS\U64emu
if "%1" == "kinst" Copy closemul_(k1).ini closemul.ini
if "%1" == "kinst2" Copy closemul_(k2).ini closemul.ini
closemul.exe ESC u64emu.exe
exit


ainsi, lorsque vous lancerez "u64emu.cmd kinst", notre "émulateur virtuel" va recopier le fichier de configuration qui nous intéresse et lancer Closemul pour piloter U64Emu.

Ce pilotage consiste à naviger dans les menus pour choisir le bon jeu de rom et pour lancer l'émulation.

Celà donne un petit aspect irréel d'un ordinateur fou mais celà fonctionne à merveille.  ^-^
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Iro le Mercredi 23 Juin 2010, 11:41:30 AM
argh !!!De la ligne de commande !!!!©
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Mercredi 23 Juin 2010, 13:32:22 PM
Annexe 2 : Lancer ZiNc en Ligne de commande (avec le nom de rom en argument)
remarque : Celà peut être généralisé pour d'autres Front end.

L'émulateur ZiNc émule les jeux Sony ZN1 et ZN2 (Matériel Playstation) et Namco System11 pour une 3D de qualité que Mame a du mal à reproduire sans machine de guerre.
Son petit problème est que, bien que fonctionnant en ligne de commande, il n'accepte pas le nom d'une rom en argument mais uniquement un numéro (qui correspond à une rom spécifique.
Pour lancer un jeu ZiNc sous notre FE favori, il va donc falloir encapsuler le lancement de ZiNc dans un petit soft qui va retrouver le numéro du jeu correspondant à la rom demandée.
Ce petit soft s'appelle cmd-launch7.exe (url ??) se base sur un simple fichier de config
lconfig.ini
LAUNCHSTYLE=0
delimeter=--

{cmdlist}
sfex;2 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
aquarush;63 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
beastrzb;26 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
beastrzr;27 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
bldyror2;28 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
brvblade;29 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
cbaj;67 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
danceyes;39 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
doapp;68 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
dunkmnia;52 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
dunkmnic;53 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
ehrgeiz;60 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
fgtlayer;59 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
ftimpcta;36 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
gdarius2;38 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
gdarius;37 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
glpracr3;65 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
hvnsgate;71 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
hyperath;56 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
jgakuen;16 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
kikaioh;20 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
mfjump;70 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
mgcldtex;33 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
mrdrillr;62 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
myangel3;42 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
pacapp;64 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
pbball96;57 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
plsmaswd;13 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
primglex;54 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
psyforce;31 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
psyforcj;30 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
psyfrcex;32 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
raystorj;34 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
raystorm;35 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
rvschola;15 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
rvschool;17 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfex2;8 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfex2j;9 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfex2p;10 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfex2pa;12 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfex2pj;11 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfexa;4 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfexj;3 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfexp;5 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfexpj;7 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sfexpu1;6 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
shiryu2;18 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
shngmtkb;66 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
sncwgltd;25 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
souledga;49 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
souledgb;50 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
souledge;51 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
starglad;1 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
stargld2;14 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
starswep;41 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
strider2;19 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
susume;58 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
techromn;21 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekken2;48 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekken2a;46 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekken2b;47 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekken3;61 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekken;45 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekkena;44 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tekkenb;43 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tgmj;24 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
tondemo;69 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
ts2;22 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
ts2j;23 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
weddingr;55 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
xevi3dg;40 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg
{/cmdlist}

exe=I:\Jeux\Emulation\ZiNc\zinc.exe

Short=0
Quotes=0
refreshspeed=1
ExitType=5


et donc, notre appel
cmd_launch7.exe strider2
sera converti en appel
zinc.exe 19 --use-config-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\zinc.cfg

"Et voilà"  ^-^ Ca pète en 3D

Pour info, mon fichier zinc.cfg (on ne sait jamais, la bête est capricieuse)
--roms-directory=I:\Jeux\Emulation\_ROMS\ZiNc
--use-renderer-cfg-file=I:\Jeux\Emulation\_EMULATEURS\ZiNc\renderer.cfg
--use-sound=yes
--sound-filter-enable=no
--sound-filter-cutoff=22050
--sound-surround-lite-enable=no
--sound-stereo-exciter=no
--use-slow-geometry=no


Cmd-Launch7.exe est disponible dans cette archive qui contient également les fichiers utilitaires qu'il faut pour lancer ZiNc en ligne de commande :
http://dragonking.arcadecontrols.com/files/cmdlinekit7.0.zip
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Mercredi 23 Juin 2010, 13:36:24 PM
Ceci dit, merci pour vos encouragements :)

@HC : promis, je ferai du propre la prochaine fois, j'ai du mal à suivre les nouvelles technologies :)

Annexe 3 : Les ajoutes à mame.xml -> gameList.xml
Petit rappel : il s'agit ici de signaler à Mala que ces jeux sont parfaitement émulés par notre "émulateur Virtuel" et doivent donc apparaitre dans la Main List des jeux fonctionnels.

Il suffit de regrouper les fichiers :

copy mame.xml+mame_add_m2.xml+mame_add_daphne.xml+mame_add_zinc.xml+mame_add_demul_naomi.xml gameList.xml

et d'utiliser ce fichier gameList.xml comme "Rom Info File (XML)" de notre "Emulateur Virtuel" dans Mala

Pas de bios et pas de clones.

Pour le Model 2 (mame_add_m2.xml)
<game name="daytona" sourcefile="model2.c">
<description>Daytona USA (Japan, Revision A)</description>
<year>1993</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="7" coins="2" service="yes">
<control type="joy8way"/>
<control type="paddle" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
<control type="pedal" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="desert" sourcefile="model2.c">
<description>Desert Tank</description>
<year>1994</year>
<manufacturer>Sega/Martin Marietta</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="6" coins="2" service="yes">
<control type="joy8way"/>
<control type="paddle" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
<control type="pedal" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="vcop" sourcefile="model2.c">
<description>Virtua Cop (Revision B)</description>
<year>1994</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="7" coins="2" service="yes">
<control type="joy8way"/>
<control type="paddle" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
<control type="pedal" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="vf2" sourcefile="model2.c">
<description>Virtua Fighter 2 (Version 2.1)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="srallyc" sourcefile="model2.c">
<description>Sega Rally Championship</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="1" buttons="4" coins="2" service="yes">
<control type="paddle" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
<control type="pedal" minimum="0" maximum="255" sensitivity="30" keydelta="10"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="vcop2" sourcefile="model2.c">
<description>Virtua Cop 2</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="manxtt" sourcefile="model2.c">
<description>Manx TT Superbike (Revision C)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="doaa" sourcefile="model2.c" cloneof="doa" romof="doa">
<description>Dead or Alive (Model 2A, Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="motoraid" sourcefile="model2.c">
<description>Motoraid</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="zeroguna" sourcefile="model2.c" cloneof="zerogun" romof="zerogun">
<description>Zero Gunner (Model 2A)</description>
<year>1997</year>
<manufacturer>Psikyo</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="dynamcop" sourcefile="model2.c">
<description>Dynamite Cop (Export, Model 2A)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="vstriker" sourcefile="model2.c">
<description>Virtua Striker (Revision A)</description>
<year>1994</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="rchase2" sourcefile="model2.c">
<description>Rail Chase 2 (Revision A)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="indy500" sourcefile="model2.c">
<description>INDY 500 Twin (Revision A, Newer)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="skytargt" sourcefile="model2.c">
<description>Sky Target</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="fvipers" sourcefile="model2.c">
<description>Fighting Vipers (Revision D)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="von" sourcefile="model2.c">
<description>Virtual On Cyber Troopers (US, Revision B)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="gunblade" sourcefile="model2.c">
<description>Gunblade NY (Revision A)</description>
<year>1995</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="schamp" sourcefile="model2.c">
<description>Sonic Championship</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="lastbrnx" sourcefile="model2.c">
<description>Last Bronx (Export, Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="sgt24h" sourcefile="model2.c">
<description>Super GT 24h</description>
<year>1996</year>
<manufacturer>Jaleco</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="dynabb" sourcefile="model2.c">
<description>Dynamite Baseball '97 (Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="doa" sourcefile="model2.c">
<description>Dead or Alive (Model 2B, Revision B)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="zerogun" sourcefile="model2.c">
<description>Zero Gunner (Model 2B)</description>
<year>1997</year>
<manufacturer>Psikyo</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="pltkids" sourcefile="model2.c">
<description>Pilot Kids (Model 2B, Revision A)</description>
<year>1998</year>
<manufacturer>Psikyo</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="skisuprg" sourcefile="model2.c">
<description>Sega Ski Super G</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="stcc" sourcefile="model2.c">
<description>Sega Touring Car Championship (Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="waverunr" sourcefile="model2.c">
<description>Wave Runner (Japan, Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="hotd" sourcefile="model2.c">
<description>House of the Dead</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="overrev" sourcefile="model2.c">
<description>Over Rev (Revision A)</description>
<year>1997</year>
<manufacturer>Jaleco</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="bel" sourcefile="model2.c">
<description>Behind Enemy Lines</description>
<year>1998</year>
<manufacturer>Sega/EPL Productions</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="vf3" sourcefile="model3.c">
<description>Virtua Fighter 3 (Revision C)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" pixclock="12288000" htotal="512" hbend="0" hbstart="496" vtotal="400" vbend="0" vbstart="384" />
<sound channels="2"/>
<input players="1" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="32768"/>
</game>
<game name="segawski" sourcefile="model2.c">
<description>Sega Water Ski (Japan, Revision A)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>
<game name="topskatr" sourcefile="model2.c">
<description>Top Skater (Export, Revision A)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<display type="raster" rotate="0" width="496" height="384" refresh="60.000000" />
<sound channels="2"/>
<input players="2" buttons="4" coins="2" service="yes">
<control type="joy8way"/>
</input>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="8192"/>
</game>


Pour Daphne (mame_add_daphne.xml)
<game name="lair">
  <description>Dragon's Lair</description>
  <year></year>
  <manufacturer></manufacturer>
  <driver status="good" emulation="good"/>
</game>
<game name="dle20">
<description>Dragon's Lair</description>
<year>1983</year>
<manufacturer>Cinematronics</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="lair2">
<description>Dragon's Lair 2</description>
<year>1991</year>
<manufacturer>Leland</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="bega">
<description>Bega's Battle</description>
<year>1983</year>
<manufacturer>Nihon Bussan</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="badlands2">
<description>Badlands</description>
<year>1984</year>
<manufacturer>Konami</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="astron">
<description>Astron Belt</description>
<year>1983</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="cobra">
<description>Cobra Command</description>
<year>1984</year>
<manufacturer>Nihon Bussan</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="esh">
<description>Esh's Aurunmilla</description>
<year>1984</year>
<manufacturer>Funai</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="galaxy">
<description>Galaxy Ranger</description>
<year>1983</year>
<manufacturer>Bally Midway</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="gpworld">
<description>GP World</description>
<year>1984</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="interstellar">
<description>Interstellar</description>
<year>1983</year>
<manufacturer>Funai</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="mach3">
<description>Mach 3</description>
<year>1983</year>
<manufacturer>Mylstar</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="sdq">
<description>Super Don Quixote</description>
<year>1984</year>
<manufacturer>Universal</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="cliff">
<description>Cliff Hanger</description>
<year>1983</year>
<manufacturer>Stern</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="uvt">
<description>Us vs Them</description>
<year>1984</year>
<manufacturer>Mylstar</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="ace2">
<description>Space Ace</description>
<year>1984</year>
<manufacturer>Cinematronics</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="starfighter">
<description>The Last Starfighter</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="roadblaster">
<description>Road Blaster</description>
<year>1985</year>
<manufacturer> Nihon Bussan</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="mechatron">
<description>Mechatron</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="gridwars">
<description>Grid Wars 2</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="rogue">
<description>Rogue Squadron 3D</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="feedingfrenzy">
<description>Feeding Frenzy 2</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="minigolfm2">
<description>Mini Golf Master 2</description>
<year></year>
<manufacturer></manufacturer>
<driver status="good" emulation="good"/>
</game>


Et pour ZiNc (mame_add_zinc.xml)
<game name="ts2" sourcefile="zn.c" romof="cpzn1">
<description>Battle Arena Toshinden 2 (USA 951124)</description>
<year>1995</year>
<manufacturer>Capcom/Takara</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="starglad" sourcefile="zn.c" romof="cpzn1">
<description>Star Gladiator (USA 960627)</description>
<year>1996</year>
<manufacturer>Capcom</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="sfex" sourcefile="zn.c" romof="cpzn1">
<description>Street Fighter EX (EURO 961219)</description>
<year>1996</year>
<manufacturer>Capcom/Arika</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="glpracr" sourcefile="zn.c" romof="cpzn1">
<description>Gallop Racer (JAPAN Ver 9.01.12)</description>
<year>1996</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="sfexp" sourcefile="zn.c" romof="cpzn1">
<description>Street Fighter EX Plus (USA 970407)</description>
<year>1997</year>
<manufacturer>Capcom/Arika</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="rvschool" sourcefile="zn.c" romof="cpzn2">
<description>Rival Schools (USA 971117)</description>
<year>1997</year>
<manufacturer>Capcom</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="sfex2" sourcefile="zn.c" romof="cpzn2">
<description>Street Fighter EX 2 (USA 980526)</description>
<year>1998</year>
<manufacturer>Capcom/Arika</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="plsmaswd" sourcefile="zn.c" romof="cpzn2">
<description>Plasma Sword (USA 980316)</description>
<year>1998</year>
<manufacturer>Capcom</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="tgmj" sourcefile="zn.c" romof="cpzn2">
<description>Tetris The Grand Master (JAPAN 980710)</description>
<year>1998</year>
<manufacturer>Capcom/Arika</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="techromn" sourcefile="zn.c" romof="cpzn2">
<description>Tech Romancer (EURO 980914)</description>
<year>1998</year>
<manufacturer>Capcom</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="sfex2p" sourcefile="zn.c" romof="cpzn2">
<description>Street Fighter EX 2 Plus (USA 990611)</description>
<year>1999</year>
<manufacturer>Capcom/Arika</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="strider2" sourcefile="zn.c" romof="cpzn2">
<description>Strider 2 (USA 991213)</description>
<year>1999</year>
<manufacturer>Capcom</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="glpracr2" sourcefile="zn.c" romof="tps">
<description>Gallop Racer 2 (USA)</description>
<year>1997</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="doapp" sourcefile="zn.c" romof="tps">
<description>Dead Or Alive ++ (JAPAN)</description>
<year>1998</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="cbaj" sourcefile="zn.c" romof="tps">
<description>Cool Boarders Arcade Jam</description>
<year>1998</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="shngmtkb" sourcefile="zn.c" romof="tps">
<description>Shanghai Matekibuyuu</description>
<year>1998</year>
<manufacturer>Sunsoft / Activision</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="tondemo" sourcefile="zn.c" romof="tps">
<description>Tondemo Crisis (JAPAN)</description>
<year>1999</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="glpracr3" sourcefile="zn.c" romof="tps">
<description>Gallop Racer 3 (JAPAN)</description>
<year>1999</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="flamegun" sourcefile="zn.c" romof="tps">
<description>Flame Gunner</description>
<year>1999</year>
<manufacturer>GAPS Inc.</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="lpadv" sourcefile="zn.c" romof="tps">
<description>Logic Pro Adventure (Japan)</description>
<year>1999</year>
<manufacturer>Amuse World</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="tblkkuzu" sourcefile="zn.c" romof="tps">
<description>The Block Kuzushi (JAPAN)</description>
<year>2000</year>
<manufacturer>Tamsoft/D3 Publisher</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="1on1gov" sourcefile="zn.c" romof="tps">
<description>1 on 1 Government (JAPAN)</description>
<year>2000</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="tecmowcm" sourcefile="zn.c" romof="tps">
<description>Tecmo World Cup Millennium (JAPAN)</description>
<year>2000</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="mfjump" sourcefile="zn.c" romof="tps">
<description>Monster Farm Jump (JAPAN)</description>
<year>2001</year>
<manufacturer>Tecmo</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="hvnsgate" sourcefile="zn.c" romof="atluspsx">
<description>Heaven's Gate</description>
<year>1996</year>
<manufacturer>Atlus/RACDYM</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="beastrzr" sourcefile="zn.c" romof="psarc95">
<description>Beastorizer (USA)</description>
<year>1997</year>
<manufacturer>Eighting/Raizing</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="beastrzb" sourcefile="zn.c" romof="psarc95">
<description>Beastorizer (USA bootleg)</description>
<year>1997</year>
<manufacturer>bootleg</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="bldyror2" sourcefile="zn.c" romof="psarc95">
<description>Bloody Roar 2 (WORLD)</description>
<year>1998</year>
<manufacturer>Eighting/Raizing</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="brvblade" sourcefile="zn.c" romof="tps">
<description>Brave Blade (JAPAN)</description>
<year>2000</year>
<manufacturer>Eighting/Raizing</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="bam2" sourcefile="zn.c" romof="psarc95">
<description>Bust a Move 2 (JAPANESE ROM ver. 1999/07/17 10:00:00)</description>
<year>1999</year>
<manufacturer>Metro/Enix/Namco</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="primrag2" sourcefile="zn.c" romof="atpsx">
<description>Primal Rage 2 (Ver 0.36a)</description>
<year>1996</year>
<manufacturer>Atari</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="nbajamex" sourcefile="zn.c" romof="acpsx">
<description>NBA Jam Extreme</description>
<year>1996</year>
<manufacturer>Acclaim</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="jdredd" sourcefile="zn.c" romof="acpsx">
<description>Judge Dredd (Rev C Dec. 17 1997)</description>
<year>1996</year>
<manufacturer>Acclaim</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="aerofgts" sourcefile="zn.c" romof="vspsx">
<description>Aero Fighters Special (TAIWAN)</description>
<year>1996</year>
<manufacturer>Video System</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="sfchamp" sourcefile="zn.c" romof="taitofx1">
<description>Super Football Champ (Ver 2.5O)</description>
<year>1995</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="psyforce" sourcefile="zn.c" romof="taitofx1">
<description>Psychic Force (Ver 2.4O)</description>
<year>1995</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="mgcldtex" sourcefile="zn.c" romof="taitofx1">
<description>Magical Date EX / Magical Date - sotsugyou kokuhaku daisakusen (Ver 2.01J)</description>
<year>1997</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="raystorm" sourcefile="zn.c" romof="taitofx1">
<description>Ray Storm (Ver 2.06A)</description>
<year>1996</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="ftimpcta" sourcefile="zn.c" romof="taitofx1">
<description>Fighters' Impact A (Ver 2.00J)</description>
<year>1997</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>
<game name="gdarius2" sourcefile="zn.c" romof="taitofx1">
<description>G-Darius Ver.2 (Ver 2.03J)</description>
<year>1997</year>
<manufacturer>Taito</manufacturer>
<driver status="good" emulation="good" color="good" sound="good" graphic="good" savestate="unsupported" palettesize="65536"/>
</game>


Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Lundi 11 Octobre 2010, 12:44:03 PM
Suite de l'annexe 3

Pour Demul Naomi (mame_add_demul_naomi.xml)
<game name="18wheelr" index="true" image="1">
<description>18 Wheeler - American Pro Trucker</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Driving</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Akatsuki Bk Ausf Achse" index="" image="">
<description>Akatsuki Bk Ausf Achse</description>
<cloneof></cloneof>
<manufacturer>Subtle Style</manufacturer>
<year>2008</year>
<genre>Fighting</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="alpiltdx" index="" image="">
<description>Airline Pilots Deluxe</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Driving</genre>
<driver status="good" emulation="good"/>
</game>
<game name="azumanga" index="" image="">
<description>Azumanga Daioh Puzzle Bobble</description>
<cloneof></cloneof>
<manufacturer>Moss (Taito license)</manufacturer>
<year>2002</year>
<genre></genre>
<driver status="good" emulation="good"/>
</game>
<game name="bdrdown" index="" image="">
<description>Border Down</description>
<cloneof></cloneof>
<manufacturer>G-Rev</manufacturer>
<year>2004</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="cfield" index="" image="">
<description>Chaos Field</description>
<cloneof></cloneof>
<manufacturer>Able</manufacturer>
<year>2004</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="chocomk" index="" image="">
<description>Musapey's Choco Marker</description>
<cloneof></cloneof>
<manufacturer>Ecole Software</manufacturer>
<year>2002</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>
<game name="cleoftp" index="" image="">
<description>Cleopatra Fortune Plus</description>
<cloneof></cloneof>
<manufacturer>Altron</manufacturer>
<year>2002</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>
<game name="crzytaxi" index="" image="">
<description>Crazy Taxi</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Driving</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Cosmic Smash (Rev A)" index="" image="">
<description>Cosmic Smash</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Breakout</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="cspike" index="" image="">
<description>Cannon Spike / Gun Spike (JPN)</description>
<cloneof></cloneof>
<manufacturer>Psikyo / Capcom</manufacturer>
<year>2000</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="cvsgd" index="" image="">
<description>Capcom Vs. SNK Millenium Fight 2000 Pro</description>
<cloneof></cloneof>
<manufacturer>Capcom / SNK</manufacturer>
<year>2001</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="cvs2gd" index="true" image="c">
<description>Capcom vs SNK 2 Millionaire Fighting 2001</description>
<cloneof></cloneof>
<manufacturer>Capcom / SNK</manufacturer>
<year>2001</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="doa2m" index="" image="">
<description>Dead or Alive 2 Millennium</description>
<cloneof>doa2</cloneof>
<manufacturer>Tecmo</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="dybb99" index="" image="">
<description>World Series '99 / Dynamite Baseball '99 (JPN)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="dybbnao" index="" image="">
<description>Dynamite Baseball NAOMI</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1998</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="dygolf" index="" image="">
<description>Virtua Golf / Dynamic Golf (JPN)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Dynamite Deka Ex" index="" image="">
<description>Dynamite Deka Ex</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2006</year>
<genre>Beat 'Em Up</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="ggram2" index="true" image="g">
<description>Giant Gram</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Sports</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="ggx" index="" image="">
<description>Guilty Gear X</description>
<cloneof></cloneof>
<manufacturer>Arc System Works</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="ggxx" index="" image="">
<description>Guilty Gear XX</description>
<cloneof></cloneof>
<manufacturer>Arc System Works</manufacturer>
<year>2002</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="ggxxac" index="" image="">
<description>Guilty Gear XX Accent Core</description>
<cloneof></cloneof>
<manufacturer>Arc System Works</manufacturer>
<year>2006</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="ggxxrl" index="" image="">
<description>Guilty Gear XX Reload</description>
<cloneof></cloneof>
<manufacturer>Arc System Works</manufacturer>
<year>2003</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="ggxxsla" index="" image="">
<description>Guilty Gear XX Slash</description>
<cloneof></cloneof>
<manufacturer>Arc System Works</manufacturer>
<year>2005</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="gundmxgd" index="" image="">
<description>Mobile Suit Gundam: Federation VS Zeon DX</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2001</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="gunsur2" index="" image="">
<description>Gun Survivor 2: Bio Hazard Code Veronica</description>
<cloneof></cloneof>
<manufacturer>Capcom / Namco</manufacturer>
<year>2001</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="gwing2" index="" image="">
<description>Giga Wing 2</description>
<cloneof></cloneof>
<manufacturer>Takumi / Capcom</manufacturer>
<year>2000</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<!-- Heavy graphic and sound lag in demul 0.5.6 -->
<game name="hmgeo" index="true" image="h">
<description>Heavy Metal Geomatrix</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2001</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="ikaruga" index="" image="">
<description>Ikaruga</description>
<cloneof></cloneof>
<manufacturer>Treasure</manufacturer>
<year>2001</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Jingi Storm - The Arcade" index="" image="">
<description>Jingi Storm - The Arcade</description>
<cloneof></cloneof>
<manufacturer>Atrativa Japan</manufacturer>
<year>2005</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="karous" index="true" image="k">
<description>Karous</description>
<cloneof></cloneof>
<manufacturer>Milestone</manufacturer>
<year>2006</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="kurucham" index="" image="">
<description>Kurukuru Chameleon</description>
<cloneof></cloneof>
<manufacturer>Able</manufacturer>
<year>2006</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>
<game name="mamonoro" index="true" image="m">
<description>Mamonoro</description>
<cloneof></cloneof>
<manufacturer>G.rev / Gulti</manufacturer>
<year>2008</year>
<genre>Shooter</genre>
<exe>NaomiVertical</exe>
<driver status="good" emulation="good"/>
</game>
<game name="Melty Blood Act Cadenza Ver B" index="" image="">
<description>Melty Blood Act Cadenza Ver B</description>
<cloneof></cloneof>
<manufacturer>Ecole Software</manufacturer>
<year>2006</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="Melty Blood Act Cadenza (Rev C)" index="" image="">
<description>Melty Blood Act Cadenza Ver A (Rev C)</description>
<cloneof></cloneof>
<manufacturer>Ecole Software</manufacturer>
<year>2005</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="moeru" index="" image="">
<description>Burning Casino / Moeru Casinyo (JPN)</description>
<cloneof></cloneof>
<manufacturer>Altron</manufacturer>
<year>2002</year>
<genre>Casino</genre>
<driver status="good" emulation="good"/>
</game>
<game name="monkeyba" index="" image="">
<description>Monkey Ball</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Maze</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Marvel vs. Capcom 2" index="true" image="m">
<description>Marvel vs. Capcom 2</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="pjustic" index="" image="">
<description>Project Justice / Moero Justice Gakuen (JPN)</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="pstone" index="" image="">
<description>Power Stone</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>1999</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="pstone2" index="" image="">
<description>Power Stone 2</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="psyvar2" index="" image="">
<description>Psyvariar 2 - The Will To Fabricate</description>
<cloneof></cloneof>
<manufacturer>G-Rev</manufacturer>
<year>2003</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="puyofev" index="" image="">
<description>Puyo Puyo Fever</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2003</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>

<game name="radirgy" index="true" image="r">
<description>Radirgy</description>
<cloneof></cloneof>
<manufacturer>Milestone</manufacturer>
<year>2005</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Radirgy Noir" index="true" image="r">
<description>Radirgy Noir</description>
<cloneof></cloneof>
<manufacturer>Milestone</manufacturer>
<year>2009</year>
<genre>Shooter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="samba" index="true" image="s">
<description>Samba De Amigo</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Rhythm</genre>
<driver status="good" emulation="good"/>
</game>
<game name="senkosp" index="" image="">
<description>Senko No Ronde Special</description>
<cloneof></cloneof>
<manufacturer>G-Rev</manufacturer>
<year>2005</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Street Fighter Zero 3 Upper" index="" image="">
<description>Street Fighter Zero 3 Upper</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>2001</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="sgtetris" index="" image="">
<description>Sega Tetris</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>
<game name="shikgam2" index="" image="">
<description>The Castle of Shikigami II / Shikigami No Shiro II (JPN)</description>
<cloneof></cloneof>
<manufacturer>Alpha System</manufacturer>
<year>2003</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Shooting Love 2007" index="" image="">
<description>Shooting Love 2007</description>
<cloneof></cloneof>
<manufacturer>Triangle Service</manufacturer>
<year>2007</year>
<genre>Shooter</genre>
<exe>NaomiVertical</exe>
<driver status="good" emulation="good"/>
</game>
<game name="Slashout" index="" image="">
<description>Slashout</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Fighter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="smlg99" index="" image="">
<description>Super Major League '99</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>

<game name="Spawn" index="" image="">
<description>Spawn - In the Demon's Hand</description>
<cloneof></cloneof>
<manufacturer>Capcom</manufacturer>
<year>1999</year>
<genre>Shooter</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="spkrbtl" index="" image="">
<description>Spikers Battle</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Sports Jam" index="" image="">
<description>Sports Jam</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Super Shanghai 2005 (Rev A)" index="" image="">
<description>Super Shanghai 2005</description>
<cloneof></cloneof>
<manufacturer>Starfish</manufacturer>
<year>2005</year>
<genre>Puzzle</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="sstrkfgt" index="" image="">
<description>Sega Strike Fighter</description>
<cloneof></cloneof>
<manufacturer>Wow Entertainment</manufacturer>
<year>2000</year>
<genre>Simulation</genre>
<driver status="good" emulation="good"/>
</game>
<game name="takoron" index="" image="">
<description>Noukone Puzzle Takoron</description>
<cloneof></cloneof>
<manufacturer>Compile</manufacturer>
<year>2006</year>
<genre>Puzzle</genre>
<driver status="good" emulation="good"/>
</game>
<game name="Tetris Kiwamemichi" index="true" image="t">
<description>Tetris Kiwamemichi</description>
<cloneof></cloneof>
<manufacturer>Success</manufacturer>
<year>2004</year>
<genre>Puzzle</genre>
<exe>NaomiMakaron</exe>
<driver status="good" emulation="good"/>
</game>
<game name="toyfight" index="" image="">
<description>Toy Fighter</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="trizeal" index="" image="">
<description>Trizeal</description>
<cloneof></cloneof>
<manufacturer>Taito</manufacturer>
<year>2004</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="trgheart" index="" image="">
<description>Trigger Heart Exelica</description>
<cloneof></cloneof>
<manufacturer>Warashi</manufacturer>
<year>2005</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="undefeat" index="true" image="u">
<description>Under Defeat</description>
<cloneof></cloneof>
<manufacturer>G-Rev</manufacturer>
<year>2005</year>
<genre>Shooter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="vathlete" index="true" image="v">
<description>Virtua Athletics / Virtua Athlete (JPN)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2002</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="virnba" index="" image="">
<description>Virtua NBA</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="vtennis" index="true" image="p">
<description>Virtua Tennis / Power Smash (JPN)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="vtennis2" index="" image="">
<description>Virtua Tennis 2 / Power Smash 2 (JPN)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="wwfroyal" index="" image="">
<description>WWF Royal Rumble</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="zombrvn" index="true" image="z">
<description>Zombie Revenge</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Fighter</genre>
<driver status="good" emulation="good"/>
</game>
<game name="confmiss" index="" image="">
<description>Confidential Mission</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Shooter/Gun</genre>
<driver status="good" emulation="good"/>
</game>
<game name="deathcox" index="" image="">
<description>Death Crimson OX</description>
<cloneof></cloneof>
<manufacturer>Ecole</manufacturer>
<year>2000</year>
<genre>Shooter/Gun</genre>
<driver status="good" emulation="good"/>
</game>
<game name="hotd2" index="" image="">
<description>House of the Dead 2</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>1999</year>
<genre>Shooter/Gun</genre>
<driver status="good" emulation="good"/>
</game>
<game name="lupinsho" index="" image="">
<description>Lupin The Third - The Shooting</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Shooter/Gun</genre>
<driver status="good" emulation="good"/>
</game>
<game name="mok" index="" image="">
<description>Maze of the Kings, The</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2002</year>
<genre>Shooter/Gun</genre>
<driver status="good" emulation="good"/>
</game>
<game name="luptype" index="" image="">
<description>Lupin The Third - The Typing</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2002</year>
<genre>Typing</genre>
<driver status="good" emulation="good"/>
</game>
<game name="totd" index="" image="">
<description>The Typing of the Dead</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2000</year>
<genre>Typing</genre>
<driver status="good" emulation="good"/>
</game>
<game name="beachspi" index="true" image="b">
<description>Beach Spikers (GDS-0014)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2002</year>
<genre>Sports</genre>
<driver status="good" emulation="good"/>
</game>
<game name="initd" index="" image="">
<description>Initial D Arcade Stage (Rev B)</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2002</year>
<genre>Driving</genre>
<driver status="good" emulation="good"/>
</game>
<game name="wldrider" index="true" image="w">
<description>Wild Riders</description>
<cloneof></cloneof>
<manufacturer>Sega</manufacturer>
<year>2001</year>
<genre>Driving</genre>
<driver status="good" emulation="good"/>
</game>
<game name="shangril" index="" image="">
<description>Dengen Tenshi Taisen Janshi Shangri-la</description>
<cloneof></cloneof>
<manufacturer>Marvelous Ent.</manufacturer>
<year>1999</year>
<genre>Mahjong</genre>
<driver status="good" emulation="good"/>
</game>
<game name="suchie3" index="true" image="i">
<description>Idol Janshi Suchie-Pai 3</description>
<cloneof></cloneof>
<manufacturer>Jaleco</manufacturer>
<year>1999</year>
<genre>Mahjong</genre>
<driver status="good" emulation="good"/>
</game>
<game name="usagui" index="" image="">
<description>Usagi - Yamashiro Mahjong Hen</description>
<cloneof></cloneof>
<manufacturer>Warashi / Taito / Mahjong Kobo</manufacturer>
<year>2003</year>
<genre>Mahjong</genre>
<driver status="good" emulation="good"/>
</game>


Pour SuperModel (mame_add_supermodel.xml)
<game name="bass">
<description>Sega Bass Fishing</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="dayto2pe">
<description>Daytona USA 2 Power Edition</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="daytona2">
<description>Daytona USA 2 (Revision A)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="dirtdvls">
<description>Dirt Devils (Revision A)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="dirtdvlsa" cloneof="dirtdvls" romof="dirtdvls">
<description>Dirt Devils (alt) (Revision A)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="eca">
<description>Emergency Call Ambulance</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="ecax" cloneof="eca" romof="eca">
<description>Emergency Call Ambulance (Export)</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="fvipers2">
<description>Fighting Vipers 2 (Revision A)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="getbass" cloneof="bass" romof="bass">
<description>Get Bass</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="harley">
<description>Harley-Davidson and L.A. Riders (Revision A)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="harleyb" cloneof="harley" romof="harley">
<description>Harley-Davidson and L.A. Riders (Revision B)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="lamachin">
<description>L.A. Machineguns</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="lemans24">
<description>LeMans 24</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="lostwsga">
<description>The Lost World</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="magtruck">
<description>Magical Truck Adventure</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="oceanhun">
<description>The Ocean Hunter</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="scud">
<description>Scud Race (Australia)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="scuda" cloneof="scud" romof="scud">
<description>Scud Race (Export)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="scudj" cloneof="scud" romof="scud">
<description>Scud Race (Japan)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="scudp" cloneof="scud" romof="scud">
<description>Scud Race Plus (Revision A)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="skichamp">
<description>Ski Champ</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="spikeofe">
<description>Spikeout Final Edition</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="spikeout">
<description>Spikeout (Revision C)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="srally2">
<description>Sega Rally 2</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="srally2x">
<description>Sega Rally 2 DX</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="swtrilgy">
<description>Star Wars Trilogy (Revision A)</description>
<year>1998</year>
<manufacturer>Sega / LucasArts</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="swtrilgya" cloneof="swtrilgy" romof="swtrilgy">
<description>Star Wars Trilogy</description>
<year>1998</year>
<manufacturer>Sega / LucasArts</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vf3">
<description>Virtua Fighter 3 (Revision C)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vf3a" cloneof="vf3" romof="vf3">
<description>Virtua Fighter 3 (Revision A)</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vf3tb" cloneof="vf3" romof="vf3">
<description>Virtua Fighter 3 Team Battle</description>
<year>1996</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="von2">
<description>Virtual On 2: Oratorio Tangram (Revision B)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="von254g" cloneof="von2" romof="von2">
<description>Virtual On 2: Oratorio Tangram (ver 5.4g)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs2">
<description>Virtua Striker 2 (Step 2.0)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs215" cloneof="vs2" romof="vs2">
<description>Virtua Striker 2 (Step 1.5)</description>
<year>1997</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs298">
<description>Virtua Striker 2 &apos;98 (Step 2.0)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs29815" cloneof="vs298" romof="vs298">
<description>Virtua Striker 2 &apos;98 (Step 1.5)</description>
<year>1998</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs299" cloneof="vs2v991" romof="vs2v991">
<description>Virtua Striker 2 &apos;99</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs299a" cloneof="vs2v991" romof="vs2v991">
<description>Virtua Striker 2 &apos;99 (Revision A)</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs299b" cloneof="vs2v991" romof="vs2v991">
<description>Virtua Striker 2 &apos;99 (Revision B)</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
<game name="vs2v991">
<description>Virtua Striker 2 &apos;99.1 (Revision B)</description>
<year>1999</year>
<manufacturer>Sega</manufacturer>
<driver status="good" emulation="good"/>
</game>
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Jeudi 29 Septembre 2011, 21:56:02 PM
MAJ du tuto pour tenir compte de 2 nouveaux émulateurs : Demul et bien évidemment SuperModel, tous deux pilotables très facilement en ligne de commande.

J'en ai profité pour refaire les images du tuto initial en png, conformément aux suggestions du HC de choc.

A propos, High Cobra, je n'ai pas réussi à uploader les png (le mime type n'était visiblement pas reconnu). Je les ai placé à l'extérieur, il faudra que je les rentre sur Gamoover.
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Lundi 17 Décembre 2012, 23:20:45 PM
Petit correctif dans le tuto initial et des précisions  :
- Pour faciliter le lancement des roms de CPS3Emulator, M2Emulator et Demul, il fut bien préciser l'emplacement  de vos roms dans le fichier ini correspondant :
"emulator.ini" pour M2Emulator  et CPS3Emulator
"Demul.ini" pour Demul
- Les émulateurs CPS3Emulator, M2Emulator et Demul ne s'arrêtent pas lorsqu'on appuye sur la touche ESC.
Il faut donc les lancer sous l'environnement de Closemul pour permettre une sortie et un retour au FE.

:demul_naomi
cd %EXEPATH%\Demul
closemul.exe demul.exe -run=naomi -rom=%1
goto emuLaunched
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: dapsaille le Mardi 18 Décembre 2012, 00:13:27 AM
damned, et dire que je suis passé à coté de ce post ....

Un grand merci, ça vas beaucoup m'aider  ^-
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: AsPiC le Jeudi 17 Octobre 2013, 11:43:57 AM
Post-it ;)

Peux tu ré-uploader les images sur Gamoo pour la pérennité du tuto ?
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Solkan le Jeudi 17 Octobre 2013, 11:55:07 AM
Citation de: AsPiC le Jeudi 17 Octobre 2013, 11:43:57 AM
Post-it ;)

Peux tu ré-uploader les images sur Gamoo pour la pérennité du tuto ?

Merci pour le post-itage :)
J'ai uploadé les images sur l'hébergement Gamoover
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: FPZ le Jeudi 07 Novembre 2013, 23:24:56 PM
Merci pour le tuto, ça répond pile poil à ce que je veux faire  <:)
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: onizukakun le Vendredi 21 Mars 2014, 22:40:22 PM
bon je poste ici pour eviter d'ouvrir un topic pour ma question:
alors j'ai MalaFe + Mame32, tout fonctionne impeccablement bien...quand j'allume la borne j'arrive directement au chargement de Wonderboy (j'aime bien ce jeu). Mon probleme c'est que avant d'arriver directement au jeu, j'ai cette foutu page récurrente de mame ou il te demande de faire : droite gauche droite gauche et ca lance le jeu ensuite... y a t'il moyen de viré cette manip? il me semble de souvenir, que le mame qui est installer dans coinops pour xbox, j'avais pas ce probleme...est ce que quelqu'un saurait comment faire? merciiiii
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: Calybre le Samedi 22 Mars 2014, 09:00:59 AM
Cherche dans mame.ini l'option "disable nagscreen" et remplace le 0 par 1. Tu peux aussi retirer les infos il faut trouver la ligne avec "skip info" et mettre aussi sur 1.   ;)
Titre: Tuto : Mala et les listes multi-émulateurs
Posté par: onizukakun le Samedi 22 Mars 2014, 11:00:47 AM
rooooh super genial, t'es un chef  ^-^ ^-^

EDIT:
voici une video qui montre le temps que ca prends...je trouve ca un peu long 30sec, pas vous
boot mame (http://www.youtube.com/watch?v=ycU_Oa6T9oA)