From 96b58b50549bd65e06f5ef1941c3a1ce155a2cbe Mon Sep 17 00:00:00 2001 From: dodge-this Date: Sun, 11 Nov 2012 00:25:28 +0000 Subject: [PATCH] and the peek does the size better (without specifying an end, it was giving odd results) git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1329 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/goodfet.arm7 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/goodfet.arm7 b/client/goodfet.arm7 index a993f1e..f5e689e 100755 --- a/client/goodfet.arm7 +++ b/client/goodfet.arm7 @@ -141,10 +141,11 @@ if(sys.argv[1]=="verify"): if(sys.argv[1]=="peek"): - start=0x0000; + start = 0x0000; if(len(sys.argv)>2): start=int(sys.argv[2],16); - stop=start; + + stop = start+4; if(len(sys.argv)>3): stop=int(sys.argv[3],16); -- 2.20.1