…Show last 189 lines
61
62[cpu]
63# core: CPU Core used in emulation. auto will switch to dynamic if available and appropriate.
64# Possible values: auto, dynamic, normal, simple.
65# cputype: CPU Type used in emulation. auto is the fastest choice.
66# Possible values: auto, 386, 386_slow, 486_slow, pentium_slow, 386_prefetch.
67# cycles: Amount of instructions DOSBox tries to emulate each millisecond. Setting this value too high results in sound dropouts and lags. Cycles can be set in 3 ways:
68# 'auto' tries to guess what a game needs.
69# It usually works, but can fail for certain games.
70# 'fixed #number' will set a fixed amount of cycles. This is what you usually need if 'auto' fails.
71# (Example: fixed 4000)
72# 'max' will allocate as much cycles as your computer is able to handle
73#
74# Possible values: auto, fixed, max.
75# cycleup: Amount of cycles to increase/decrease with keycombo.
76# cycledown: Setting it lower than 100 will be a percentage.
77
78core=auto
79cputype=auto
80cycles=max
81cycleup=500
82cycledown=20
83
84[mixer]
85# nosound: Enable silent mode, sound is still emulated though.
86# rate: Mixer sample rate, setting any device's rate higher than this will probably lower their sound quality.
87# Possible values: 22050, 44100, 48000, 32000, 16000, 11025, 8000, 49716.
88# blocksize: Mixer block size, larger blocks might help sound stuttering but sound will also be more lagged.
89# Possible values: 2048, 4096, 8192, 1024, 512, 256.
90# prebuffer: How many milliseconds of data to keep on top of the blocksize.
91
92nosound=false
93rate=22050
94blocksize=2048
95prebuffer=10
96
97[midi]
98# mpu401: Type of MPU-401 to emulate.
99# Possible values: intelligent, uart, none.
100# mididevice: Device that will receive the MIDI data from MPU-401.
101# Possible values: default, win32, alsa, oss, coreaudio, coremidi, none.
102# midiconfig: Special configuration options for the device driver. This is usually the id of the device you want to use. See README for details.
103
104mpu401=intelligent
105mididevice=default
106midiconfig=
107
108[sblaster]
109# sbtype: Type of sblaster to emulate.
110# Possible values: sb1, sb2, sbpro1, sbpro2, sb16, none.
111# sbbase: The IO address of the soundblaster.
112# Possible values: 220, 240, 260, 280, 2a0, 2c0, 2e0, 300.
113# irq: The IRQ number of the soundblaster.
114# Possible values: 7, 5, 3, 9, 10, 11, 12.
115# dma: The DMA number of the soundblaster.
116# Possible values: 1, 5, 0, 3, 6, 7.
117# hdma: The High DMA number of the soundblaster.
118# Possible values: 1, 5, 0, 3, 6, 7.
119# sbmixer: Allow the soundblaster mixer to modify the DOSBox mixer.
120# oplmode: Type of OPL emulation. On 'auto' the mode is determined by sblaster type. All OPL modes are Adlib-compatible, except for 'cms'.
121# Possible values: auto, cms, opl2, dualopl2, opl3, none.
122# oplemu: Provider for the OPL emulation. compat or old might provide better quality (see oplrate as well).
123# Possible values: default, compat, fast, old.
124# oplrate: Sample rate of OPL music emulation. Use 49716 for highest quality (set the mixer rate accordingly).
125# Possible values: 22050, 49716, 44100, 48000, 32000, 16000, 11025, 8000.
126
127sbtype=sb16
128sbbase=220
129irq=5
130dma=1
131hdma=5
132sbmixer=true
133oplmode=auto
134oplemu=default
135oplrate=22050
136
137[gus]
138# gus: Enable the Gravis Ultrasound emulation.
139# gusrate: Sample rate of Ultrasound emulation.
140# Possible values: 22050, 44100, 48000, 32000, 16000, 11025, 8000, 49716.
141# gusbase: The IO base address of the Gravis Ultrasound.
142# Possible values: 240, 220, 260, 280, 2a0, 2c0, 2e0, 300.
143# gusirq: The IRQ number of the Gravis Ultrasound.
144# Possible values: 5, 3, 7, 9, 10, 11, 12.
145# gusdma: The DMA channel of the Gravis Ultrasound.
146# Possible values: 3, 0, 1, 5, 6, 7.
147# ultradir: Path to Ultrasound directory. In this directory
148# there should be a MIDI directory that contains
149# the patch files for GUS playback. Patch sets used
150# with Timidity should work fine.
151
152gus=false
153gusrate=22050
154gusbase=240
155gusirq=7
156gusdma=3
157ultradir=C:\ULTRASND
158
159[speaker]
160# pcspeaker: Enable PC-Speaker emulation.
161# pcrate: Sample rate of the PC-Speaker sound generation.
162# Possible values: 22050, 44100, 48000, 32000, 16000, 11025, 8000, 49716.
163# tandy: Enable Tandy Sound System emulation. For 'auto', emulation is present only if machine is set to 'tandy'.
164# Possible values: auto, on, off.
165# tandyrate: Sample rate of the Tandy 3-Voice generation.
166# Possible values: 22050, 44100, 48000, 32000, 16000, 11025, 8000, 49716.
167# disney: Enable Disney Sound Source emulation. (Covox Voice Master and Speech Thing compatible).
168
169pcspeaker=false
170pcrate=22050
171tandy=off
172tandyrate=22050
173disney=false
174
175[joystick]
176# joysticktype: Type of joystick to emulate: auto (default), none,
177# 2axis (supports two joysticks),
178# 4axis (supports one joystick, first joystick used),
179# 4axis_2 (supports one joystick, second joystick used),
180# fcs (Thrustmaster), ch (CH Flightstick).
181# none disables joystick emulation.
182# auto chooses emulation depending on real joystick(s).
183# Possible values: auto, 2axis, 4axis, 4axis_2, fcs, ch, none.
184# timed: enable timed intervals for axis. (false is old style behaviour).
185# autofire: continuously fires as long as you keep the button pressed.
186# swap34: swap the 3rd and the 4th axis. can be useful for certain joysticks.
187# buttonwrap: enable button wrapping at the number of emulated buttons.
188
189joysticktype=ch
190timed=true
191autofire=false
192swap34=true
193buttonwrap=true
194
195[serial]
196# serial1: set type of device connected to com port.
197# Can be disabled, dummy, modem, nullmodem, directserial.
198# Additional parameters must be in the same line in the form of
199# parameter:value. Parameter for all types is irq.
200# for directserial: realport (required), rxdelay (optional).
201# (realport:COM1 realport:ttyS0).
202# for modem: listenport (optional).
203# for nullmodem: server, rxdelay, txdelay, telnet, usedtr,
204# transparent, port, inhsocket (all optional).
205# Example: serial1=modem listenport:5000
206# Possible values: dummy, disabled, modem, nullmodem, directserial.
207# serial2: see serial1
208# Possible values: dummy, disabled, modem, nullmodem, directserial.
209# serial3: see serial1
210# Possible values: dummy, disabled, modem, nullmodem, directserial.
211# serial4: see serial1
212# Possible values: dummy, disabled, modem, nullmodem, directserial.
213
214serial1=dummy
215serial2=dummy
216serial3=disabled
217serial4=disabled
218
219[dos]
220# xms: Enable XMS support.
221# ems: Enable EMS support.
222# umb: Enable UMB support.
223# keyboardlayout: Language code of the keyboard layout (or none).
224
225xms=true
226ems=true
227umb=true
228keyboardlayout=auto
229
230[ipx]
231# ipx: Enable ipx over UDP/IP emulation.
232
233ipx=false
234
235[autoexec]
236# Lines in this section will be run at startup.
237@ECHO OFF
238MIXER MASTER 75:75
239MOUNT C C:\GAMES
240# VER SET 5 0
241VER SET 7 10
242SET PATH=C:\;C:\DOS;C:\FED;GM_RESET;C:\NC;C:\NE;C:\NU;C:\PATH;C:\PKZIP;C:\TEMP;Z:\
243SET TEMP=C:\TEMP
244SET TMP=C:\TEMP
245C:
246CD\TNOVA
247CALL TN.BAT
248EXIT