diff --git a/README.md b/README.md index afe8879..a7bf961 100644 --- a/README.md +++ b/README.md @@ -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 +``` \ No newline at end of file diff --git a/src/ewm.c b/src/ewm.c index bfe355b..db15bd0 100644 --- a/src/ewm.c +++ b/src/ewm.c @@ -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 '\n"); } int main(int argc, char **argv) {