Add small doc improvements for first time users (#182)

This commit is contained in:
Joe Hildebrand 2018-01-25 14:38:53 -07:00 committed by Stefan Arentz
parent 71bbe91ac3
commit f797e02836
2 changed files with 15 additions and 0 deletions

View File

@ -52,3 +52,17 @@ Here are some of the things I want to accomplish for each emulated machine:
* Audio Support
* Display Emulation - High resolution graphics - Mostly works.
## Building the emulator
```
cd src
make
```
## Running the emulator
From the command line:
```
./src/ewm two --color --drive1 disks/DOS33-SamplePrograms.dsk
```

View File

@ -38,6 +38,7 @@ static void usage() {
fprintf(stderr, "\n");
fprintf(stderr, "If no command is specified, the 'bootloader' will be run, which\n");
fprintf(stderr, "allows the user to interactively select what emulator to start.\n");
fprintf(stderr, "\nSuggestion: to get started, try 'ewm two --color --drive1 <disk file>'\n");
}
int main(int argc, char **argv) {