X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFETConsole.py;h=ca23bb945212ead1418cf0d20d20ab139be7b0d6;hp=751f5801752d7afb36e97dd29958f631e0ee139c;hb=139279cae9d6f011896550e265d4d676e460f47d;hpb=c61dddffb04278b411028971e6f2a03303646ed9 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;