Je viens de tester avec un Mame 0.145 et le dino.zip de la même version et le jeu ne démarre pas :
$ ./mame64 dino
cde_23a.8f NOT FOUND
cde_22a.7f NOT FOUND
cde_21a.6f NOT FOUND
cd-1m.3a NOT FOUND
cd-3m.5a NOT FOUND
cd-2m.4a NOT FOUND
cd-4m.6a NOT FOUND
cd-5m.7a NOT FOUND
cd-7m.9a NOT FOUND
cd-6m.8a NOT FOUND
cd-8m.10a NOT FOUND
cd_q.5k NOT FOUND
cd-q1.1k NOT FOUND
cd-q2.2k NOT FOUND
cd-q3.3k NOT FOUND
cd-q4.4k NOT FOUND
buf1 NOT FOUND
ioa1 NOT FOUND
prg2 NOT FOUND
rom1 NOT FOUND
iob1.12d NOT FOUND
bprg1.11d NOT FOUND
ioc1.ic1 NOT FOUND
ERROR: required files are missing, the game cannot be run.
Dans mon dino.zip, je n'ai que 5 petits fichiers :
$ unzip -l dino.zip
Archive: dino.zip
Length Date Time Name
--------- ---------- ----- ----
279 1996-12-24 23:32 cd63b.1a
279 1996-12-24 23:32 d10f1.10f
279 1996-12-24 23:32 d7l1.7l
279 1996-12-24 23:32 d8l1.8l
279 1996-12-24 23:32 d9k2.9k
--------- -------
1395 5 files
J'ai donc dumpé tout le contenu de mon romset 0.145 (juste le nom des fichiers) dans un fichier texte :
$ find . -name "*.zip" -exec unzip -l {} \; | tee all.txt
Puis j'ai tenté de chercher dans ce fichier chacun des fichiers manquants :
$ ./mame64 dino 2>&1 | grep "NOT FOUND" | cut -d " " -f 1 | xargs -t -I {} grep -c {} all.txt
grep -c cde_23a.8f all.txt
0
grep -c cde_22a.7f all.txt
0
grep -c cde_21a.6f all.txt
0
grep -c cd-1m.3a all.txt
0
grep -c cd-3m.5a all.txt
0
grep -c cd-2m.4a all.txt
0
grep -c cd-4m.6a all.txt
0
grep -c cd-5m.7a all.txt
0
grep -c cd-7m.9a all.txt
0
grep -c cd-6m.8a all.txt
0
grep -c cd-8m.10a all.txt
0
grep -c cd_q.5k all.txt
0
grep -c cd-q1.1k all.txt
0
grep -c cd-q2.2k all.txt
0
grep -c cd-q3.3k all.txt
0
grep -c cd-q4.4k all.txt
0
grep -c buf1 all.txt
26
grep -c ioa1 all.txt
26
grep -c prg2 all.txt
46
grep -c rom1 all.txt
743
grep -c iob1.12d all.txt
16
grep -c bprg1.11d all.txt
15
grep -c ioc1.ic1 all.txt
8
Bah voilà, à part des noms de ROM passe-partout (buf1, ...), il me manque des trucs...
Il me semble pourtant que mon romset 0.145 est complet.
Si quelqu'un a une idée...
![(Gawa?:)](http://www.gamoover.net/Forums/Smileys/guntar/gne.gif)