gpfce patch part3
[fceu.git] / drivers / pc / usage.h
CommitLineData
c62d2810 1/* FCE Ultra - NES/Famicom Emulator
2 *
3 * Copyright notice for this file:
4 * Copyright (C) 2002 Ben Parnell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21void ShowUsage(char *prog)
22{
23printf("\nUsage is as follows:\n%s <options> filename\n\n",prog);
24puts("Options:");
25puts(DriverUsage);
26puts("-cpalette x Load a custom global palette from file x.\n\
27-ntsccol x Emulate an NTSC's TV's colors.\n\
28 0 = Disabled.\n\
29 1 = Enabled.\n\
30-pal Emulate a PAL NES.\n\
31-soundvol x Sound volume. x is an integral percentage value.\n\
32-inputx str Select device mapped to virtual input port x(1-2).\n\
33 str may be: none, gamepad, zapper, powerpada, powerpadb,\n\
34 arkanoid\n\
35-fcexp str Select Famicom expansion port device.\n\
36 str may be: none, shadow, arkanoid, 4player, fkb\n\
37-nofs x Disables Four-Score emulation if x is 1.\n\
38-gg Enable Game Genie emulation.\n\
39-no8lim x Disables the 8 sprites per scanline limitation.\n\
40 0 = Limitation enabled.\n\
41 1 = Limitation disabled.\n\
42-subase x Save extra game data files under the base directory if enabled.\n\
43 0 = Disabled.\n\
44 1 = Enabled.\n\
45-snapname x Selects what type of file name snapshots will have.\n\
46 0 = Numeric(0.png)\n\
47 1 = File base and numeric(mario-0.png)\n\
48-nothrottle x Disable artificial speed throttling if x is non-zero.\n\
49-clipsides x Clip leftmost and rightmost 8 columns of pixels of video output.\n\
50 0 = No clipping.\n\
51 1 = Clipping.\n\
52-slstart x Set the first drawn emulated scanline. Valid values for x are\n\
53 0 through 239.\n\
54-slend x Set the last drawn emulated scanline. Valid values for x are\n\
55 0 through 239.");
56}