From fe239a1e94c399c1417ee536e76e33496ed227e0 Mon Sep 17 00:00:00 2001 From: Jesus Garcia Date: Wed, 17 Nov 2021 13:18:06 -0500 Subject: [PATCH] Increased the default count of disassembly to 100 --- src/cli/mem_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/mem_cmds.c b/src/cli/mem_cmds.c index 3d3be07..8d4928a 100644 --- a/src/cli/mem_cmds.c +++ b/src/cli/mem_cmds.c @@ -40,7 +40,7 @@ short mem_cmd_dump(short channel, int argc, char * argv[]) { short mem_cmd_dasm(short channel, int argc, char * argv[]) { unsigned long address = 0; - long count = 100; + long count = 1000; long i; TRACE("mem_cmd_dasm");