mirror of
https://github.com/cc65/cc65.git
synced 2025-04-08 19:38:55 +00:00
Added -h option
git-svn-id: svn://svn.cc65.org/cc65/trunk@137 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
fbe694bca3
commit
3f4da40d6d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user