87 lines
1.4 KiB
INI
87 lines
1.4 KiB
INI
# DOSBox-X Configuration for Cordle
|
|
# ==================================
|
|
# DOSBox-X provides better DOS compatibility and development features
|
|
# Download from: https://dosbox-x.com/
|
|
|
|
[sdl]
|
|
fullscreen=false
|
|
fulldouble=false
|
|
fullresolution=0x0
|
|
windowresolution=1024x768
|
|
output=opengl
|
|
autolock=true
|
|
sensitivity=100
|
|
waitonerror=true
|
|
priority=higher,normal
|
|
mapperfile=mapper-cordle.map
|
|
usescancodes=true
|
|
|
|
[dosbox]
|
|
language=
|
|
machine=svga_s3
|
|
captures=capture
|
|
memsize=32
|
|
startup_verbosity=high
|
|
|
|
[render]
|
|
frameskip=0
|
|
aspect=true
|
|
scaler=normal3x
|
|
glshader=default
|
|
|
|
[cpu]
|
|
core=auto
|
|
cputype=pentium_slow
|
|
cycles=max
|
|
cycleup=10
|
|
cycledown=20
|
|
|
|
[mixer]
|
|
nosound=false
|
|
rate=44100
|
|
blocksize=1024
|
|
prebuffer=25
|
|
|
|
[midi]
|
|
mpu401=intelligent
|
|
mididevice=default
|
|
|
|
[dos]
|
|
xms=true
|
|
ems=true
|
|
umb=true
|
|
ver=7.1
|
|
keyboardlayout=auto
|
|
|
|
[files]
|
|
nocachedir=false
|
|
|
|
[autoexec]
|
|
@echo off
|
|
cls
|
|
echo.
|
|
echo ===============================================
|
|
echo CORDLE - DOS DEVELOPMENT ENVIRONMENT
|
|
echo (DOSBox-X Enhanced)
|
|
echo ===============================================
|
|
echo.
|
|
|
|
# Mount current directory
|
|
mount c: .
|
|
c:
|
|
|
|
# Enhanced prompt
|
|
prompt $P$G
|
|
|
|
# Display useful info
|
|
echo DOSBox-X Version with enhanced DOS support
|
|
echo Memory: 32 MB configured
|
|
echo Display: SVGA S3 emulation
|
|
echo.
|
|
echo Quick Start:
|
|
echo make Build Cordle
|
|
echo cordle.exe Run the game
|
|
echo edit cordle.c Edit source (if edit is available)
|
|
echo.
|
|
echo ===============================================
|