From 2ae504fb9bcc83133eefe1e1d6ff00ee774fdd7b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 13 Mar 2013 19:59:39 +0100 Subject: [PATCH] software/bios: default length 4 for mr command --- software/bios/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/bios/main.c b/software/bios/main.c index b81ce6871..d8113ddcd 100644 --- a/software/bios/main.c +++ b/software/bios/main.c @@ -79,7 +79,7 @@ static void mr(char *startaddr, char *len) return; } if(*len == 0) { - length = 1; + length = 4; } else { length = strtoul(len, &c, 0); if(*c != 0) {