X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=client%2FGoodFETConsole.py;h=ca23bb945212ead1418cf0d20d20ab139be7b0d6;hb=aa5d68445bc502a8ce1cf023d16cba5e089821f4;hp=751f5801752d7afb36e97dd29958f631e0ee139c;hpb=b070c8ec3025b80f20b6230259fba989931c1d6b;p=goodfet diff --git a/client/GoodFETConsole.py b/client/GoodFETConsole.py index 751f580..ca23bb9 100644 --- a/client/GoodFETConsole.py +++ b/client/GoodFETConsole.py @@ -82,6 +82,9 @@ class GoodFETConsole(): def CMDflash(self,args): file=args[1]; self.client.flash(self.expandfilename(file)); + def CMDdump(self,args): + file=args[1]; + self.client.dump(self.expandfilename(file)); def CMDwhere(self,args): pc=self.client.getpc(); print "PC=0x%04X" % pc;