and the peek does the size better (without specifying an end, it was giving odd results)
authordodge-this <dodge-this@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Sun, 11 Nov 2012 00:25:28 +0000 (00:25 +0000)
committerdodge-this <dodge-this@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Sun, 11 Nov 2012 00:25:28 +0000 (00:25 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1329 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/goodfet.arm7

index a993f1e..f5e689e 100755 (executable)
@@ -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);