It is easy to customise DOSee to load other MS-DOS programs by using HTML5 `<meta>` elements. A [index.html](index.html) file is the identifier which contains 6 meta elements used by DOSee for handling emulation information and customisation.
DOSee uses ZIP file archives to simulate a hard disk drive. Any ZIP file provided to _dosee:zip:path_ will be mounted by the emulator as MS-DOS drive `C:`. The `C:` drive will be accessible to all DOS commands such as `dir C:` and any included DOS programs available to run.
DOS usually uses the following file extensions to identify a program: `.exe``.com``.bat`. Other than these there is no standard file naming convention to identify which file should be used to launch a piece of DOS software.
If the content is left blank or the filename doesn't exist in the archive, DOSee will launch into an DOS `C:` prompt.
When set to `true` it tells DOSee to mount a collection of MS-DOS utilities and tools that are accessible from the `U:` drive. The default option is false.
Configures the initial pixel width and height of the emulation loading screen and canvas. The canvas may readjust itself after the emulator runs depending on the graphics hardware selection, scale options and aspect correction settings. The default canvas and screen size is 640px x 480px.
When set to `true` it tells DOSee to mount a collection of Gravis Ultrasound audio drivers and tools that are accessible from the `G:` drive. These drivers are always loaded by DOSee whenever the Gravis Ultrasound audio option is selected so this should always be left to `false`.
#### Sample programs
There are three additional sample programs included in this repository that you can try out. In the [index.html](index.html) update the following `<meta>` elements.
Create a new program subdirectory. For your own implementation, there is no requirement to follow this `dos_programs/` directory naming structure.
```
cd DOSee
mkdir -p dos_programs/program_5
```
Download the [Space Quest 3 non-interactive demo](https://www.scummvm.org/frs/demos/sci/sq3-dos-ni-demo-en.zip) and save it to the new program subdirectory.