summaryrefslogtreecommitdiff
path: root/Userland/disasm.cpp
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-12-05 16:22:58 +0100
committerAndreas Kling <kling@serenityos.org>2020-12-06 00:06:53 +0100
commit4ec77ba929ed13ed639b803aebb9aa61b1353443 (patch)
treee6dfa2cec39af9e9d04c69fed87d4ed91de2e750 /Userland/disasm.cpp
parent52a80620847e5ff934c7a385c106d098d60a8a6c (diff)
downloadserenity-4ec77ba929ed13ed639b803aebb9aa61b1353443.zip
Userland: Write some '--help' descriptions where appropriate
Diffstat (limited to 'Userland/disasm.cpp')
-rw-r--r--Userland/disasm.cpp3
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);