2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00

Merge pull request #104 from user56441/dosbox

Add `dosbox`
This commit is contained in:
Igor Chubin 2020-03-31 09:46:17 +02:00 committed by GitHub
commit e9c99fed2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
sheets/dosbox Normal file
View File

@ -0,0 +1,32 @@
# dosbox
# An x86/DOS emulator with sound/graphics
# Start dosbox
dosbox
# Start in fullscreen mode
dosbox -fullscreen
# Start and execute the script "script.bat"
dosbox script.bat
# Start and exit after running the program "doom.exe"
dosbox -exit doom.exe
# Mount C at "/home/user" right after startup
dosbox -c "mount C /home/user"
# Start in the internal keymapper, where you can change the keys dosbox uses
dosbox -startmapper
# Edit the default config file with the editor set in $EDITOR
dosbox -editconf $EDITOR
# Remove the default config file
dosbox -eraseconf
# Remove all the changes made in the internal keymapper
dosbox -erasemapper
# Start with the options specified in the config file "dosbox.conf"
dosbox -conf dosbox.conf