diff loadtools/ltdispatch.c @ 35:05af070c4b60

loadtool: preparations for dump2bin and dump2srec
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 05 May 2013 02:24:56 +0000
parents dacf45e3d20f
children 65111e6eee9e
line wrap: on
line diff
--- a/loadtools/ltdispatch.c	Sat May 04 08:47:53 2013 +0000
+++ b/loadtools/ltdispatch.c	Sun May 05 02:24:56 2013 +0000
@@ -8,6 +8,7 @@
 #include <strings.h>
 #include <stdlib.h>
 
+extern int cmd_crc32();
 extern int cmd_exec();
 extern int cmd_exit();
 extern int loadtool_cmd_passthru();
@@ -18,6 +19,7 @@
 	int maxargs;
 	int (*func)();
 } cmdtab[] = {
+	{"crc32", 2, 2, cmd_crc32},
 	{"dump", 2, 2, loadtool_cmd_passthru},
 	{"exec", 1, 1, cmd_exec},
 	{"exit", 0, 1, cmd_exit},