sim/rx: define sim_memory_map

The rx simulator doesn't define sim_memory_map and so fails to link
with GDB.  Define it now to return NULL, this can be extended later to
return an actual memory map if anyone wants this functionality.

sim/rx/ChangeLog:

	* gdb-if.c (sim_memory_map): New function.
This commit is contained in:
Andrew Burgess
2021-01-25 18:58:37 +00:00
parent cd074e0415
commit 0309f9549d
2 changed files with 12 additions and 0 deletions

View File

@ -854,3 +854,11 @@ sim_complete_command (SIM_DESC sd, const char *text, const char *word)
{
return NULL;
}
/* Stub this out for now. */
char *
sim_memory_map (SIM_DESC sd)
{
return NULL;
}