diff --git a/src/ca65/main.c b/src/ca65/main.c index 21d6a613e..b754950c0 100644 --- a/src/ca65/main.c +++ b/src/ca65/main.c @@ -73,6 +73,7 @@ static void Usage (void) "Usage: %s [options] file\n" "Short options:\n" " -g\t\t\tAdd debug info to object file\n" + " -h\t\t\tHelp (this text)\n" " -i\t\t\tIgnore case of symbols\n" " -l\t\t\tCreate a listing if assembly was ok\n" " -o name\t\tName the output file\n" @@ -473,6 +474,10 @@ int main (int argc, char* argv []) OptDebugInfo (Arg, 0); break; + case 'h': + OptHelp (Arg, 0); + break; + case 'i': OptIgnoreCase (Arg, 0); break;