X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2Fgoodfet.glitch;fp=client%2Fgoodfet.glitch;h=c1b0ceaf4395204231dc3ab1913268b17120e809;hp=823b8de85c41d0223f6d923192569e7a4cee8208;hb=cac3f7817e7022215ab8fdb91daa70bfeddae089;hpb=b512ed283910a439bebc01c134b250b3fc73be63 diff --git a/client/goodfet.glitch b/client/goodfet.glitch index 823b8de..c1b0cea 100755 --- a/client/goodfet.glitch +++ b/client/goodfet.glitch @@ -19,6 +19,7 @@ if(len(sys.argv)==1): print "%s avr explore" % sys.argv[0]; print "%s avr graph" % sys.argv[0]; print "%s avr graphx11" % sys.argv[0]; + print "%s avr points" % sys.argv[0]; print """ This populates a database, glitch.db, with a record of all attempted glitches. Graphs can then be generated from the results, allowing @@ -41,6 +42,9 @@ if(sys.argv[2]=="graphx11"): if(sys.argv[2]=="graph"): glitcher.graph(); exit(); +if(sys.argv[2]=="points"): + glitcher.points(); + exit(); if(sys.argv[2]=="crunch"): glitcher.crunch();