From f797e028363d8725ed7bf77d9bcb004e664fbfce Mon Sep 17 00:00:00 2001 From: Joe Hildebrand Date: Thu, 25 Jan 2018 14:38:53 -0700 Subject: [PATCH] Add small doc improvements for first time users (#182) --- README.md | 14 ++++++++++++++ src/ewm.c | 1 + 2 files changed, 15 insertions(+) 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) {