diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-02-01 23:51:24 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-06 12:15:34 -0500 |
commit | 7a9bd3b4e219c5cd892757f86c2075ec67333903 (patch) | |
tree | 1f2aa83e1d088dedccbfb2f1d3e267707fee13db /sim/m32c/gdb-if.c | |
parent | 4c0d76b9c420bb29cb3365c5edc9c78c50d2b231 (diff) | |
download | gdb-7a9bd3b4e219c5cd892757f86c2075ec67333903.zip gdb-7a9bd3b4e219c5cd892757f86c2075ec67333903.tar.gz gdb-7a9bd3b4e219c5cd892757f86c2075ec67333903.tar.bz2 |
sim: erc32/m32c/rl78: add sim_memory_map stub for gdb
These ports don't use the common sim core, so they weren't providing
a sim_memory_map for gdb, so they failed to link with the new memory
map logic added for the sim. Add stubs to fix.
Diffstat (limited to 'sim/m32c/gdb-if.c')
-rw-r--r-- | sim/m32c/gdb-if.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c index 5ada0b0..92e447f 100644 --- a/sim/m32c/gdb-if.c +++ b/sim/m32c/gdb-if.c @@ -707,6 +707,12 @@ sim_complete_command (SIM_DESC sd, const char *text, const char *word) return NULL; } +char * +sim_memory_map (SIM_DESC sd) +{ + return NULL; +} + void sim_info (SIM_DESC sd, int verbose) { |