Dump to archive now a standard command.
[goodfet] / client / GoodFETConsole.py
index 751f580..ca23bb9 100644 (file)
@@ -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;