Previous 199869 Revisions Next

r33897 Monday 15th December, 2014 at 14:10:17 UTC by MetalliC
new NOT WORKING
Star Horse Progress Returns (satellite) [CaH4e3]
documentation [MetalliC]

(also removed unneeded decrypted binary from Rhythm Tengoku)
[/trunk]makefile
[src/build]build.mak file2str.c* file2str.py
[src/mame]mame.lst
[src/mame/drivers]naomi.c
[src/mess]mess.mak
[src/osd/sdl]input.c
[src/osd/sdl/man]castool.1 chdman.1 floptool.1 imgtool.1 jedutil.1 ldresample.1 ldverify.1 mame.6 mess.6 romcmp.1 testkeys.1

trunk/makefile
r242408r242409
959959   @$(CPPCHECK) $(CPPCHECKFLAGS) $<
960960endif
961961
962$(OBJ)/%.lh: $(SRC)/%.lay $(SRC)/build/file2str.py
962$(OBJ)/%.lh: $(SRC)/%.lay $(FILE2STR_TARGET)
963963   @echo Converting $<...
964   @$(PYTHON) $(SRC)/build/file2str.py $< $@ layout_$(basename $(notdir $<))
964   @$(FILE2STR) $< $@ layout_$(basename $(notdir $<))
965965
966$(OBJ)/%.fh: $(SRC)/%.png $(PNG2BDC_TARGET) $(SRC)/build/file2str.py
966$(OBJ)/%.fh: $(SRC)/%.png $(PNG2BDC_TARGET) $(FILE2STR_TARGET)
967967   @echo Converting $<...
968968   @$(PNG2BDC) $< $(OBJ)/temp.bdc
969   @$(PYTHON) $(SRC)/build/file2str.py $(OBJ)/temp.bdc $@ font_$(basename $(notdir $<)) UINT8
969   @$(FILE2STR) $(OBJ)/temp.bdc $@ font_$(basename $(notdir $<)) UINT8
970970
971971$(DRIVLISTOBJ): $(DRIVLISTSRC)
972972   @echo Compiling $<...
trunk/src/build/build.mak
r242408r242409
1818# set of build targets
1919#-------------------------------------------------
2020
21FILE2STR_TARGET = $(BUILDOUT)/file2str$(BUILD_EXE)
2122MAKEDEP_TARGET = $(BUILDOUT)/makedep$(BUILD_EXE)
2223MAKEMAK_TARGET = $(BUILDOUT)/makemak$(BUILD_EXE)
2324MAKELIST_TARGET = $(BUILDOUT)/makelist$(BUILD_EXE)
2425PNG2BDC_TARGET = $(BUILDOUT)/png2bdc$(BUILD_EXE)
2526VERINFO_TARGET = $(BUILDOUT)/verinfo$(BUILD_EXE)
2627
28FILE2STR = $(FILE2STR_TARGET)
2729MAKEDEP = $(MAKEDEP_TARGET)
2830MAKEMAK = $(MAKEMAK_TARGET)
2931MAKELIST = $(MAKELIST_TARGET)
r242408r242409
3234
3335ifneq ($(TERM),cygwin)
3436ifeq ($(TARGETOS),win32)
37FILE2STR = $(subst /,\,$(FILE2STR_TARGET))
3538MAKEDEP = $(subst /,\,$(MAKEDEP_TARGET))
3639MAKEMAK = $(subst /,\,$(MAKEMAK_TARGET))
3740MAKELIST = $(subst /,\,$(MAKELIST_TARGET))
r242408r242409
4245
4346ifneq ($(CROSS_BUILD),1)
4447BUILD += \
48   $(FILE2STR_TARGET) \
4549   $(MAKEDEP_TARGET) \
4650   $(MAKEMAK_TARGET) \
4751   $(MAKELIST_TARGET) \
r242408r242409
5155
5256
5357#-------------------------------------------------
58# file2str
59#-------------------------------------------------
60
61FILE2STROBJS = \
62   $(BUILDOBJ)/file2str.o \
63
64$(FILE2STR_TARGET): $(FILE2STROBJS) $(LIBOCORE)
65   @echo Linking $@...
66   $(LD) $(LDFLAGS) $^ $(LIBS) -o $@
67
68
69
70#-------------------------------------------------
5471# makedep
5572#-------------------------------------------------
5673
r242408r242409
138155#-------------------------------------------------
139156# It's a CROSS_BUILD. Ensure the targets exist.
140157#-------------------------------------------------
158$(FILE2STR_TARGET):
159   @echo $@ should be built natively. Nothing to do.
160
141161$(MAKEDEP_TARGET):
142162   @echo $@ should be built natively. Nothing to do.
143163
trunk/src/build/file2str.c
r0r242409
1/***************************************************************************
2
3    file2str.c
4
5    Simple file to string converter.
6
7    Copyright Nicola Salmoria and the MAME Team.
8    Visit http://mamedev.org for licensing and usage restrictions.
9
10***************************************************************************/
11
12#include <stdio.h>
13#include <stdlib.h>
14
15
16/*-------------------------------------------------
17    main - primary entry point
18-------------------------------------------------*/
19
20int main(int argc, char *argv[])
21{
22   const char *srcfile, *dstfile, *varname, *type;
23   FILE *src, *dst;
24   unsigned char *buffer;
25   int bytes, offs;
26   int terminate = 1;
27
28   /* needs at least three arguments */
29   if (argc < 4)
30   {
31      fprintf(stderr,
32         "Usage:\n"
33         "  laytostr <source.lay> <output.h> <varname> [<type>]\n"
34         "\n"
35         "The default <type> is char, with an assumed NULL terminator\n"
36      );
37      return 0;
38   }
39
40   /* extract arguments */
41   srcfile = argv[1];
42   dstfile = argv[2];
43   varname = argv[3];
44   type = (argc >= 5) ? argv[4] : "char";
45   if (argc >= 5)
46      terminate = 0;
47
48   /* open source file */
49   src = fopen(srcfile, "rb");
50   if (src == NULL)
51   {
52      fprintf(stderr, "Unable to open source file '%s'\n", srcfile);
53      return 1;
54   }
55
56   /* determine file size */
57   fseek(src, 0, SEEK_END);
58   bytes = ftell(src);
59   fseek(src, 0, SEEK_SET);
60
61   /* allocate memory */
62   buffer = (unsigned char *)malloc(bytes + 1);
63   if (buffer == NULL)
64   {
65      fclose(src);
66      fprintf(stderr, "Out of memory allocating %d byte buffer\n", bytes);
67      return 1;
68   }
69
70   /* read the source file */
71   fread(buffer, 1, bytes, src);
72   buffer[bytes] = 0;
73   fclose(src);
74
75   /* open dest file */
76   dst = fopen(dstfile, "w");
77   if (dst == NULL)
78   {
79      free(buffer);
80      fprintf(stderr, "Unable to open output file '%s'\n", dstfile);
81      return 1;
82   }
83
84   /* write the initial header */
85   fprintf(dst, "extern const %s %s[];\n", type, varname);
86   fprintf(dst, "const %s %s[] =\n{\n\t", type, varname);
87
88   /* write out the data */
89   for (offs = 0; offs < bytes + terminate; offs++)
90   {
91      fprintf(dst, "0x%02x%s", buffer[offs], (offs != bytes + terminate - 1) ? "," : "");
92      if (offs % 16 == 15)
93         fprintf(dst, "\n\t");
94   }
95   fprintf(dst, "\n};\n");
96
97   /* close the files */
98   free(buffer);
99   fclose(dst);
100   return 0;
101}
trunk/src/build/file2str.py
r242408r242409
1#!/usr/bin/python
2
3import string
4import sys
5import os
6
7if (len(sys.argv) < 4) :
8    print('Usage:')
9    print('  file2str <source.lay> <output.h> <varname> [<type>]')
10    print('')
11    print('The default <type> is char, with an assumed NULL terminator')
12    sys.exit(0)
13
14terminate = 1
15srcfile = sys.argv[1]
16dstfile = sys.argv[2]
17varname = sys.argv[3]
18
19if (len(sys.argv) >= 5) :
20    type = sys.argv[4]
21    terminate = 0
22else:
23    type = 'char'
24
25try:
26    myfile = open(srcfile, 'rb')
27except IOError:
28    print("Unable to open source file '%s'" % srcfile)
29    sys.exit(-1)
30
31bytes = os.path.getsize(srcfile)
32try:
33    dst = open(dstfile,'w')
34    dst.write('extern const %s %s[];\n' % ( type, varname ));
35    dst.write('const %s %s[] =\n{\n\t' % ( type, varname));
36    offs = 0
37    with open(srcfile, "rb") as src:
38        while True:
39            chunk = src.read(16)
40            if chunk:
41                for b in chunk:
42                    dst.write('0x%02x' % ord(b))
43                    offs = offs + 1
44                    if offs != bytes:
45                  dst.write(',')
46            else:
47                break
48            if offs != bytes:
49                dst.write('\n\t')
50    if terminate == 1:
51       dst.write(',0x00')
52    dst.write('\n};\n')
53    dst.close()
54except IOError:
55    print("Unable to open output file '%s'" % dstfile)
56    sys.exit(-1)
No newline at end of file
trunk/src/mame/drivers/naomi.c
r242408r242409
263263Maze of the Kings The (prototype)               no cart  *       21 (64Mb)   present  315-6206  FRI           * flash-PCB, not dumped but known to exist
264264Samba de Amigo (prototype)                      no cart  *       21 (64Mb)   present  315-6206  317-0270-COM  * instead of EPROM have tiny PCB with 2 flashroms on it
265265Soul Surfer (Rev A)                           840-0095C  23838C  21 (64Mb)   present  315-6206  not present
266Star Horse (server)                           840-0055C  23626   17 (64Mb)   present  315-6206  not present
266Star Horse (server)                           840-0055C  23626   17 (64Mb)   present  315-6206  not present   requires 837-13785 ARCNET&IO BD
267267The King of Route 66 (Rev A)                  840-0087C  23819A  20 (64Mb)   present  315-6206  not present   content is the same as regular 171-8132A cart
268268Virtua NBA (prototype)                          no cart  *       21 (64Mb)   present  315-6206  317-0271-COM  * instead of EPROM have tiny PCB with 2 flashroms on it
269269Virtua Tennis / Power Smash (prototype)         no cart  *       21 (64Mb)   present  315-6206  317-0263-COM  * flash-PCB, title screen have label "SOFT R&D Dept.#3", not dumped but known to exist
r242408r242409
517517MushiKing - The King Of Beetle 2K5 1ST          840-0158C  24286    7 (128Mb)  315-6319A  315-6213  not present   requires 610-0669 barcode reader
518518Oinori-daimyoujin Matsuri                       840-0126B  24053    5 (128Mb)  315-6319A  315-6213  not present   requires 837-14274 "G2 EXPANSION BD" (similar to hopper 837-14381 but with ARC NET chip)
519519Samba de Amigo Ver. 2000                        840-0047C  23600   11 (128Mb)  315-6319A  315-6213  317-0295-COM
520Star Horse (big screens)                        840-0054C  23625    4 (128Mb)  315-6319   315-6213  not present
521Star Horse (client)                             840-0056C  23627    6 (128Mb)* 315-6319   315-6213  not present   * +1 (64Mb)
522Star Horse Progress (Rev A)                     840-0123C  24122A   7 (128Mb)  315-6319A  315-6213  not present   requires an additional middle board n. 837-13785
520Star Horse (big screens)                        840-0054C  23625    4 (128Mb)  315-6319   315-6213  not present   requires 837-13785 ARCNET&IO BD
521Star Horse (satellite)                          840-0056C  23627    6 (128Mb)* 315-6319   315-6213  not present   * +1 (64Mb), requires 837-13785 ARCNET&IO BD
522Star Horse Progress (satellite) (Rev A)         840-0123C  24122A   7 (128Mb)  315-6319A  315-6213  not present   requires 837-13785 ARCNET&IO BD
523523The King of Route 66 (Rev A)                    840-0087C  23819A  10 (128Mb)  315-6319A  315-6213  not present
524524Virtua Striker 3 (Rev B)                        840-0061C  23663B  11 (128Mb)  315-6319A  315-6213  317-0310-COM
525525Virtua Striker 3 (Rev C)                        840-0061C  23663C  11 (128Mb)  315-6319A  315-6213  317-0310-COM
r242408r242409
579579Poka Suka Ghost                                     840-0170C  not present  5 (512Mb)   present  317-0461-COM  present  requires 837-14672 sensor board (SH4 based)
580580Radirgy Noa                                         841-0062C  not present  4 (512Mb)   present  317-5138-JPN  present  IC2# is labeled "VER.2" - IC4# is marked "8A"
581581Rythm Tengoku                                       841-0177C  not present  4 (512Mb)   present  317-0503-JPN  present  IC2# is labeled "VER.2" - IC4# is marked "8A"
582Star Horse Progress Returns (satellite)             840-0186C  not present  2 (512Mb)   present  not present   present  IC2# is labeled "VER.2", requires 837-13785 ARCNET&IO BD
582583Shooting Love 2007                                  841-0057C  not present  4 (512Mb)   present  317-5129-JPN  present  IC2# is labeled "VER.2"
583584Touch De Zunou (Rev A)                              840-0166C  not present  2 (512Mb)   present  317-0435-JPN  present  IC4# is marked "18", requires 837-14672 sensor board (SH4 based)
584585
r242408r242409
58455846   NAOMI_DEFAULT_EEPROM
58465847
58475848   ROM_REGION( 0x10000000, "rom_board", ROMREGION_ERASEFF)
5848   // real encrypted ROM dump
58495849   ROM_LOAD( "fpr-24423.ic8",  0x00000000, 0x4000000, CRC(c85513ce) SHA1(88490fe64c0866059492b0c1c714b50f3f270676) )
5850   // decrypted version of IC8
5851   ROM_LOAD( "fpr-24423.ic8d", 0x00000000, 0x4000000, CRC(209a991c) SHA1(d76228a215c50ff3085708182b8e47fd2ebc6a47) )
58525850   ROM_LOAD( "fpr-24424.ic9",  0x04000000, 0x4000000, CRC(7bba2402) SHA1(94d637969c58d5dfa3ee64bc3cfb9495dbb97511) )
58535851   ROM_LOAD( "fpr-24425.ic10", 0x08000000, 0x4000000, CRC(6223ebac) SHA1(64c0ec61c108acbb557e7d3837f578deba832cb6) )
58545852   ROM_LOAD( "fpr-24426.ic11", 0x0c000000, 0x4000000, CRC(c78b0981) SHA1(f889acf9065566e11ff985a3b6c4824e364d57ae) )
r242408r242409
58595857   ROM_REGION(0x4, "boardid", ROMREGION_ERASEVAL(0x04))
58605858ROM_END
58615859
5860// this is satellite unit of the main game, server/control and lagre screen units required and need to be dumped
5861ROM_START( starhrpr )
5862   NAOMI_BIOS
5863   NAOMI_DEFAULT_EEPROM
5864
5865   ROM_REGION( 0x8000000, "rom_board", ROMREGION_ERASEFF)
5866   ROM_LOAD( "fpr-24489.ic8",  0x00000000, 0x4000000, CRC(156797a4) SHA1(b20da57726974c5d772885fe809c4bbf89012db6) )
5867   ROM_LOAD( "fpr-24790.ic9",  0x04000000, 0x4000000, CRC(b6c40348) SHA1(37b5b334c24536e5b2062c233423f0e3d338e1f2) )
5868
5869   // PIC not populated
5870   ROM_REGION( 0x800, "pic_readout", ROMREGION_ERASE00 )
5871
5872   ROM_REGION(0x4, "boardid", ROMREGION_ERASEVAL(0x02))
5873ROM_END
5874
58625875/*
58635876
58645877SYSTEMID: NAOMI
r242408r242409
65286541   ROM_LOAD( "sflash.bin",   0x000000, 0x000084, CRC(4929e940) SHA1(f8c4277ca0ae5e36b2eed033cc731b8fc4fccafc) )
65296542ROM_END
65306543
6544// this is satellite unit of the main game, server/control and lagre screen units required and need to be dumped
65316545ROM_START( starhrsp )
65326546   NAOMI_BIOS
65336547   NAOMI_DEFAULT_EEPROM
r242408r242409
89648978/* 0052 */ GAME( 2000, derbyo2k, naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Derby Owners Club 2000 (Rev A)", GAME_FLAGS )
89658979/* 0054 */ GAME( 2000, starhrse, naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Star Horse (big screens)", GAME_FLAGS )
89668980/* 0055 */ GAME( 2000, starhrct, naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Star Horse (server)", GAME_FLAGS )
8967/* 0056 */ GAME( 2000, starhrcl, naomi,    naomim2, naomi,   naomi_state, naomi,  ROT0, "Sega", "Star Horse (client)", GAME_FLAGS )
8981/* 0056 */ GAME( 2000, starhrcl, naomi,    naomim2, naomi,   naomi_state, naomi,  ROT270,"Sega", "Star Horse (satellite)", GAME_FLAGS )
89688982/* 0064 */ GAME( 2001, wrungp,   naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Wave Runner GP", GAME_FLAGS )
89698983/* 0068 */ GAME( 2001, crakndj2, naomi,    naomim2, crackndj,naomi_state, naomi,   ROT0, "Sega", "Crackin' DJ Part 2", GAME_FLAGS )
89708984/* 0073 */ GAME( 2001, inunoos,  naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Inu No Osanpo / Dog Walking (Rev A)", GAME_FLAGS )
r242408r242409
89738987/* 0088 */ GAME( 2001, derbyocw, naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Derby Owners Club World Edition (JPN, USA, EXP, KOR, AUS) (Rev D)", GAME_FLAGS )
89748988/* 0088 */ GAME( 2001, drbyocwc, derbyocw, naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Derby Owners Club World Edition (JPN, USA, EXP, KOR, AUS) (Rev C)", GAME_FLAGS )
89758989/* 0098 */ GAME( 2002, shootopl, naomi,    naomim1, naomi,   naomi_state, naomi,   ROT0, "Sega", "Shootout Pool", GAME_FLAGS )
8976/* 0123 */ GAME( 2003, starhrsp, naomi,    naomim2, naomi,   naomi_state, naomi,  ROT0, "Sega", "Star Horse Progress (Rev A)", GAME_FLAGS )
8990/* 0123 */ GAME( 2003, starhrsp, naomi,    naomim2, naomi,   naomi_state, naomi,  ROT270,"Sega", "Star Horse Progress (satellite) (Rev A)", GAME_FLAGS )
89778991/* 0126 */ GAME( 2003, oinori,   naomi,    naomim2, naomi,   naomi_state, naomi,   ROT0, "Sega", "Oinori-daimyoujin Matsuri", GAME_FLAGS )
89788992/* 0128 */ GAME( 2003, shootpl,  naomi,    naomim1, naomi,   naomi_state, naomi,   ROT0, "Sega", "Shootout Pool The Medal / Shootout Pool Prize (Rev A)", GAME_FLAGS )
89798993/* 0130 */ GAME( 2002, hopper,   naomi,    naomi,   naomi,   naomi_state, naomi,   ROT0, "Sega", "SWP Hopper Board", GAME_FLAGS )
r242408r242409
89889002/* 0170 */ GAME( 2007, pokasuka, manicpnc, naomim4, naomi,   naomi_state, naomi,   ROT0, "Sega", "Pokasuka Ghost", GAME_FLAGS )
89899003/* 0175 */ GAME( 2007, asndynmt, naomi,    naomim4, naomi,   naomi_state, naomi,   ROT0, "Sega", "Asian Dynamite", GAME_FLAGS )
89909004/* 0177 */ GAME( 2007, rhytngk,  naomi,    naomim4, naomi,   naomi_state, naomi,   ROT0, "Sega/Nintendo", "Rhythm Tengoku", GAME_FLAGS )
8991// 01?? Star Horse Progress Returns
9005/* 0186 */ GAME( 2009, starhrpr, naomi,    naomim4, naomi,   naomi_state, naomi,  ROT270,"Sega", "Star Horse Progress Returns (satellite)", GAME_FLAGS )
89929006// 00xx Mayjinsen (Formation Battle in May) - prototype, never released
89939007
89949008/* Cartridge prototypes of games released on GD-ROM */
trunk/src/mame/mame.lst
r242408r242409
53435343derbyo2k        // 2000.06 Derby Owners Club 2000 Ver.2 (Rev A)
53445344starhrse        // 2000.?? Star Horse (big screens)
53455345starhrct        // 2000.12 Star Horse (server)
5346starhrcl        // 2000.?? Star Horse (client)
5346starhrcl        // 2000.11.28 Star Horse (satellite)
53475347vonot           // 2000.06 Virtual-on Oratorio Tangram M.S.B.S. Ver.5.66 2000 Edition
53485348ggx             // 2000.07 Guilty Gear X
53495349slasho          // 2000.07 Slashout
r242408r242409
54335433oinori          // 2003.08 Oinori-daimyoujin Matsuri
54345434psyvar2         // 2003.11 Psyvariar 2 - The Will To Fabricate
54355435puyofev         // 2003.11 Puyo Puyo Fever
5436starhrsp        // 2003.12 Star Horse Progress (Rev A)
5436starhrsp        // 2003.12.01 Star Horse Progress (satellite) (Rev A)
54375437puyofevp        // 2003.?? Puyo Puyo Fever (prototype)
54385438            // 2003.?? Dragon Treasure
54395439            // 2003.?? Rabbit 2
r242408r242409
54895489mbaa            // 2008.09 Melty Blood Actress Again
54905490mbaaa           // 2008.12 Melty Blood Actress Again Ver.A
54915491radirgyn        // 2009.06 Radirgy Noa
5492starhrpr        // 2009.07.27 Star Horse Progress Returns (satellite)
54925493            // 2009.?? Project Cerberus (planned to be released in 2009)
54935494
54945495// NAOMI based (System SP)
trunk/src/mess/mess.mak
r242408r242409
18681868   $(MESS_DRIVERS)/fb01.o      \
18691869
18701870$(MESS_DRIVERS)/ymmu100.o: $(MESS_DRIVERS)/ymmu100.inc
1871$(MESS_DRIVERS)/ymmu100.inc: $(MESSSRC)/drivers/ymmu100.ppm $(SRC)/build/file2str.py
1871$(MESS_DRIVERS)/ymmu100.inc: $(MESSSRC)/drivers/ymmu100.ppm $(FILE2STR_TARGET)
18721872   @echo Converting $<...
1873   @$(PYTHON) $(SRC)/build/file2str.py $(MESSSRC)/drivers/ymmu100.ppm $@ ymmu100_bkg UINT8
1873   @$(FILE2STR) $(MESSSRC)/drivers/ymmu100.ppm $@ ymmu100_bkg UINT8
18741874
18751875$(MESSOBJ)/zenith.a:            \
18761876   $(MESS_DRIVERS)/z100.o      \
trunk/src/osd/sdl/input.c
r242408r242409
757757
758758      osd_printf_verbose("Joystick: %s\n", devinfo->name.cstr());
759759      osd_printf_verbose("Joystick:   ...  %d axes, %d buttons %d hats %d balls\n", SDL_JoystickNumAxes(joy), SDL_JoystickNumButtons(joy), SDL_JoystickNumHats(joy), SDL_JoystickNumBalls(joy));
760      osd_printf_verbose("Joystick:   ...  Physical id %d mapped to logical id %d\n", physical_stick, stick + 1);
760      osd_printf_verbose("Joystick:   ...  Physical id %d mapped to logical id %d\n", physical_stick, stick);
761761
762762      // loop over all axes
763763      for (axis = 0; axis < SDL_JoystickNumAxes(joy); axis++)
trunk/src/osd/sdl/man/castool.1
r242408r242409
66.\" Cesare Falco <c.falco@ubuntu.com>, February 2011
77.\"
88.\"
9.TH CASTOOL 1 2014-12-15 0.157 "MESS Generic cassette manipulation tool"
9.TH CASTOOL 1 2014-11-19 0.156 "MESS Generic cassette manipulation tool"
1010.\"
1111.\"
1212.\" NAME chapter
trunk/src/osd/sdl/man/chdman.1
r242408r242409
66.\" Ashley T. Howes <debiandev@ashleyhowes.com>, February 2005
77.\" updated by Cesare Falco <c.falco@ubuntu.com>, February 2007
88.\"
9.TH CHDMAN 1 2014-12-15 0.157 "MAME Compressed Hunks of Data (CHD) manager"
9.TH CHDMAN 1 2014-11-19 0.156 "MAME Compressed Hunks of Data (CHD) manager"
1010.\"
1111.\" NAME chapter
1212.SH NAME
trunk/src/osd/sdl/man/floptool.1
r242408r242409
66.\" Cesare Falco <c.falco@ubuntu.com>, April 2014
77.\"
88.\"
9.TH FLOPTOOL 1 2014-12-15 0.157 "MESS Generic floppy manipulation tool"
9.TH FLOPTOOL 1 2014-11-19 0.156 "MESS Generic floppy manipulation tool"
1010.\"
1111.\"
1212.\" NAME chapter
trunk/src/osd/sdl/man/imgtool.1
r242408r242409
66.\" Cesare Falco <c.falco@ubuntu.com>, February 2011
77.\"
88.\"
9.TH IMGTOOL 1 2014-12-15 0.157 "MESS media image manipulation tool"
9.TH IMGTOOL 1 2014-11-19 0.156 "MESS media image manipulation tool"
1010.\"
1111.\"
1212.\" NAME chapter
trunk/src/osd/sdl/man/jedutil.1
r242408r242409
88.\" References
99.\" http://aarongiles.com/?p=159
1010.\"
11.TH JEDUTIL 1 2014-12-15 0.157 "MAME JEDEC file utilities"
11.TH JEDUTIL 1 2014-11-19 0.156 "MAME JEDEC file utilities"
1212.\"
1313.\" NAME chapter
1414.SH NAME
trunk/src/osd/sdl/man/ldresample.1
r242408r242409
33.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
44.\" other parameters are allowed: see man(7), man(1)
55.\"
6.TH LDRESAMPLE 1 2014-12-15 0.157 "MAME laserdisc audio manipulation tool"
6.TH LDRESAMPLE 1 2014-11-19 0.156 "MAME laserdisc audio manipulation tool"
77.\"
88.\" Please adjust this date whenever revising the manpage.
99.\"
trunk/src/osd/sdl/man/ldverify.1
r242408r242409
55.\" Man page created from source and usage information by
66.\" Cesare Falco <c.falco@ubuntu.com>, August 2008
77.\"
8.TH LDVERIFY 1 2014-12-15 0.157 "MAME laserdisc data checker"
8.TH LDVERIFY 1 2014-11-19 0.156 "MAME laserdisc data checker"
99.\"
1010.\" NAME chapter
1111.SH NAME
trunk/src/osd/sdl/man/mame.6
r242408r242409
1313.\" and updated by Andrew Burton <burtona@gol.com>, July 2003
1414.\"
1515.\"
16.TH MAME 6 2014-12-15 0.157 "MAME \- The Multiple Arcade Machine Emulator"
16.TH MAME 6 2014-11-19 0.156 "MAME \- The Multiple Arcade Machine Emulator"
1717.\"
1818.\"
1919.\" NAME chapter
trunk/src/osd/sdl/man/mess.6
r242408r242409
1616.\" http://www.mess.org/
1717.\"
1818.\"
19.TH MESS 6 2014-12-15 0.157 "The Multiple Emulator Super System (MESS)"
19.TH MESS 6 2014-11-19 0.156 "The Multiple Emulator Super System (MESS)"
2020.\"
2121.\"
2222.\" NAME chapter
trunk/src/osd/sdl/man/romcmp.1
r242408r242409
99.\" References
1010.\" http://www.mame.net/mamefaq.html
1111.\"
12.TH ROMCMP 1 2014-12-15 0.157 "MAME romset checking tool"
12.TH ROMCMP 1 2014-11-19 0.156 "MAME romset checking tool"
1313.\"
1414.\" NAME chapter
1515.SH NAME
trunk/src/osd/sdl/man/testkeys.1
r242408r242409
55.\" Man page created from source and usage information
66.\" Cesare Falco <c.falco@ubuntu.com>, February 2007
77.\"
8.TH TESTKEYS 1 2014-12-15 0.157 "MAME SDL keycode scanner"
8.TH TESTKEYS 1 2014-11-19 0.156 "MAME SDL keycode scanner"
99.\"
1010.\" NAME chapter
1111.SH NAME


Previous 199869 Revisions Next


© 1997-2024 The MAME Team