mirror of
https://git.code.sf.net/p/fuse-emulator/fuse
synced 2026-01-28 14:20:54 +03:00
91 lines
3.1 KiB
Plaintext
91 lines
3.1 KiB
Plaintext
# settings.dat: configuration options for Fuse
|
|
# Copyright (c) 2002 Philip Kendall
|
|
|
|
# $Id$
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
# Author contact information:
|
|
|
|
# E-mail: pak21-fuse@srcf.ucam.org
|
|
# Postal address: 15 Crescent Road, Wokingham, Berks, RG40 2DB, England
|
|
|
|
# Format is
|
|
|
|
# <name in settings_info structure>,
|
|
# <type>,
|
|
# <default value>,
|
|
# <short option>,
|
|
# <name on command line>, (defaults to <settings_info name> =~ s/_/-/g)
|
|
# <name in config file>, (defaults to <command line> =~ s/-//g)
|
|
|
|
emulation_speed, numeric, 100,, speed
|
|
frame_rate, numeric, 1,, rate
|
|
|
|
issue2, boolean, 0
|
|
joy_kempston, boolean, 0,, kempston
|
|
tape_traps, boolean, 1,, traps, tapetraps
|
|
auto_load, boolean, 1
|
|
slt_traps, boolean, 1,, slt, slttraps
|
|
double_screen, null, 0
|
|
full_screen, boolean, 0
|
|
writable_roms, boolean, 0
|
|
|
|
sound_device, string, NULL, 'd'
|
|
sound, boolean, 1
|
|
sound_load, boolean, 1,, loading-sound
|
|
stereo_ay, boolean, 0,, separation
|
|
stereo_beeper, boolean, 0,, beeper-stereo
|
|
|
|
rzx_compression, boolean, 0,, compress-rzx
|
|
|
|
snapshot, string, NULL, 's'
|
|
tape_file, string, NULL, 't', tape, tapefile
|
|
start_machine, string, strdup( "48" ), 'm', machine
|
|
record_file, string, NULL, 'r', record, recordfile
|
|
playback_file, string, NULL, 'p', playback, playbackfile
|
|
plus3disk_file, string, NULL,, plus3disk
|
|
trdosdisk_file, string, NULL,, trdosdisk
|
|
dck_file, string, NULL,, dock
|
|
|
|
printer_graphics_filename, string, strdup( "printout.pbm" ),, graphicsfile
|
|
printer_text_filename, string, strdup( "printout.txt" ),, textfile
|
|
|
|
aspect_hint, boolean, 1
|
|
svga_mode, numeric, 320, 'v', svgamode
|
|
|
|
start_scaler_mode, string, strdup( "normal" ), 'g', graphics-filter
|
|
|
|
rom_16, string, strdup( "48.rom" ),
|
|
rom_48, string, strdup( "48.rom" ),
|
|
rom_128_0, string, strdup( "128-0.rom" ),
|
|
rom_128_1, string, strdup( "128-1.rom" ),
|
|
rom_plus2_0, string, strdup( "plus2-0.rom" ),
|
|
rom_plus2_1, string, strdup( "plus2-1.rom" ),
|
|
rom_plus2a_0, string, strdup( "plus3-0.rom" ),
|
|
rom_plus2a_1, string, strdup( "plus3-1.rom" ),
|
|
rom_plus2a_2, string, strdup( "plus3-2.rom" ),
|
|
rom_plus2a_3, string, strdup( "plus3-3.rom" ),
|
|
rom_plus3_0, string, strdup( "plus3-0.rom" ),
|
|
rom_plus3_1, string, strdup( "plus3-1.rom" ),
|
|
rom_plus3_2, string, strdup( "plus3-2.rom" ),
|
|
rom_plus3_3, string, strdup( "plus3-3.rom" ),
|
|
rom_tc2048, string, strdup( "tc2048.rom" ),
|
|
rom_tc2068_0, string, strdup( "tc2068-0.rom" ),
|
|
rom_tc2068_1, string, strdup( "tc2068-1.rom" ),
|
|
rom_pentagon_0, string, strdup( "128p-0.rom" ),
|
|
rom_pentagon_1, string, strdup( "128p-1.rom" ),
|
|
rom_pentagon_2, string, strdup( "trdos.rom" ),
|