URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [orpmon/] [cmds/] [tftp.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
#include "common.h" #include "net.h" unsigned long load_addr; int tftp_cmd (int argc, char *argv[]) { NetLoop(TFTP); return 0; } void module_tftp_init (void) { register_command ("tftp", "[<file>] [<ip>]", "TFTP download", tftp_cmd); }
Go to most recent revision | Compare with Previous | Blame | View Log