diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-12-05 16:22:58 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-06 00:06:53 +0100 |
commit | 4ec77ba929ed13ed639b803aebb9aa61b1353443 (patch) | |
tree | e6dfa2cec39af9e9d04c69fed87d4ed91de2e750 /Userland/disasm.cpp | |
parent | 52a80620847e5ff934c7a385c106d098d60a8a6c (diff) | |
download | serenity-4ec77ba929ed13ed639b803aebb9aa61b1353443.zip |
Userland: Write some '--help' descriptions where appropriate
Diffstat (limited to 'Userland/disasm.cpp')
-rw-r--r-- | Userland/disasm.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/disasm.cpp b/Userland/disasm.cpp index 401086e12a..6d3a82d047 100644 --- a/Userland/disasm.cpp +++ b/Userland/disasm.cpp @@ -42,6 +42,9 @@ int main(int argc, char** argv) const char* path = nullptr; Core::ArgsParser args_parser; + args_parser.set_general_help( + "Disassemble an executable, and show human-readable " + "assembly code for each function."); args_parser.add_positional_argument(path, "Path to i386 binary file", "path"); args_parser.parse(argc, argv); |