diff --git a/pages/dos/loadfix.md b/pages/dos/loadfix.md new file mode 100644 index 0000000000..d0c88055f7 --- /dev/null +++ b/pages/dos/loadfix.md @@ -0,0 +1,16 @@ +# LOADFIX + +> Reduce available conventional memory for old programs (default: 64KB). +> More information: . + +- Start a program with 64KB allocated memory: + +`LOADFIX {{program}}` + +- Load with custom KB reduction (1-1024): + +`LOADFIX -{{32}} {{program}}` + +- Free all previously allocated memory: + +`LOADFIX -f` diff --git a/pages/dos/loadhigh.md b/pages/dos/loadhigh.md new file mode 100644 index 0000000000..f18ad7598d --- /dev/null +++ b/pages/dos/loadhigh.md @@ -0,0 +1,8 @@ +# LOADHIGH + +> Load program into upper memory (requires `xms=true`, `umb=true`). +> More information: . + +- Load program into upper memory: + +`LOADHIGH {{program}}` diff --git a/pages/dos/md.md b/pages/dos/md.md new file mode 100644 index 0000000000..370859656b --- /dev/null +++ b/pages/dos/md.md @@ -0,0 +1,8 @@ +# MD + +> Make a directory. +> More information: . + +- Create directory: + +`MD {{path/to/directory}}` diff --git a/pages/dos/mem.md b/pages/dos/mem.md new file mode 100644 index 0000000000..24b942b18b --- /dev/null +++ b/pages/dos/mem.md @@ -0,0 +1,8 @@ +# MEM + +> Display free memory info. +> More information: . + +- Display free memory: + +`MEM` diff --git a/pages/dos/mixer.md b/pages/dos/mixer.md new file mode 100644 index 0000000000..a3960cee96 --- /dev/null +++ b/pages/dos/mixer.md @@ -0,0 +1,28 @@ +# MIXER + +> Display/set sound levels. +> More information: . + +- Display current volumes: + +`MIXER` + +- Set master volume (left:right percentages): + +`MIXER master {{80}}:{{80}}` + +- Set Sound Blaster volume in decibels: + +`MIXER sb d{{10}}:d{{10}}` + +- Set GUS left channel only: + +`MIXER gus {{50}}` + +- Set volumes without displaying result: + +`MIXER gus {{40}}:{{40}} /NOSHOW` + +- List available MIDI devices (Windows only): + +`MIXER /LISTMIDI`