From 1f88b198f20bbb0f7e3b26ef763aaa0ec66bc842 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Fri, 21 Oct 2016 17:34:31 +0800 Subject: [PATCH] cstool: print out core version --- cstool/cstool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cstool/cstool.c b/cstool/cstool.c index 1a2bb19e..5f5215a2 100644 --- a/cstool/cstool.c +++ b/cstool/cstool.c @@ -73,7 +73,7 @@ static uint8_t *preprocess(char *code, size_t *size) static void usage(char *prog) { - printf("Cstool v%s for Capstone Disassembler Engine (www.capstone-engine.org)\n\n", VERSION); + printf("Cstool v%s for Capstone Disassembler Engine (core v%u.%u)\n\n", VERSION, CS_API_MAJOR, CS_API_MINOR); printf("Syntax: %s [-d:print all detail information] [start-address-in-hex-format]\n", prog); printf("\nThe following options are supported:\n");