sim: cr16: add sim_complete_command stub

This commit is contained in:
Mike Frysinger 2012-08-30 06:09:45 +00:00
parent a1373b60b3
commit 4881a75b8b
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-08-28 Kaushik Phatak <kaushik.phatak@kpitcummins.com>
* interp.c (sim_complete_command): New stub function.
2012-06-17 Mike Frysinger <vapier@gentoo.org>
* interp.c: Include config.h first. Also include stdlib.h and

View File

@ -1548,6 +1548,11 @@ sim_store_register (sd, rn, memory, length)
return size;
}
char **
sim_complete_command (SIM_DESC sd, char *text, char *word)
{
return NULL;
}
void
sim_do_command (sd, cmd)