From 446590448bde4d6e96eab30576d5b7ff6c2f305d Mon Sep 17 00:00:00 2001 From: Dr-Carlos Date: Thu, 31 Mar 2022 20:04:04 +1030 Subject: [PATCH] Change debugger to disassembler in --help --- shell/main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/shell/main.cpp b/shell/main.cpp index 837991e..096bbfa 100644 --- a/shell/main.cpp +++ b/shell/main.cpp @@ -246,7 +246,7 @@ static void parse_options(int argc, char **argv) { if (show_help) { printf("Usage: %s [OPTION]... [FILE]\n", argv[0]); - printf("Open the fxos debugger, optionally with [FILE] loaded into a new empty space with ROM and ROM_P2\n"); + printf("Open the fxos disassembler, optionally with [FILE] loaded into a new empty space with ROM and ROM_P2\n"); printf("Options:\n"); printf(" -e, --execute=CMD\texecute CMD and exit\n"); printf(" --norc\t\tdo not execute any fxosrc files\n"); @@ -254,9 +254,6 @@ static void parse_options(int argc, char **argv) { exit(0); } - // if (norc) - // option_index++; - if (optind < argc) { if ((argc - optind) > 1) { printf("%s only supports 1 positional argument, FILE.\n", argv[0]);