summaryrefslogtreecommitdiffstats
path: root/sim/v850/interp.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1997-08-27 04:44:41 +0000
committerAndrew Cagney <cagney@redhat.com>1997-08-27 04:44:41 +0000
commitfafce69ab16b45fb1ac6bd2ec5afc8e8dbed0374 (patch)
treeeaab2b03e17f79cd61e73a0b510942da3f20dcc3 /sim/v850/interp.c
parent9f64f00adaa7fb89b13ed291a778a262260dc409 (diff)
downloadppe42-binutils-fafce69ab16b45fb1ac6bd2ec5afc8e8dbed0374.tar.gz
ppe42-binutils-fafce69ab16b45fb1ac6bd2ec5afc8e8dbed0374.zip
Add ABFD argument to sim_create_inferior. Document.
Add file sim-hload.c - generic load for hardware only simulators. Review each simulators sim_open, sim_load, sim_create_inferior so that they more closely match required behavour.
Diffstat (limited to 'sim/v850/interp.c')
-rw-r--r--sim/v850/interp.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sim/v850/interp.c b/sim/v850/interp.c
index b98a64ce72..387b6dc614 100644
--- a/sim/v850/interp.c
+++ b/sim/v850/interp.c
@@ -663,11 +663,16 @@ sim_info (sd, verbose)
}
SIM_RC
-sim_create_inferior (sd, argv, env)
+sim_create_inferior (sd, abfd, argv, env)
SIM_DESC sd;
+ struct _bfd *abfd;
char **argv;
char **env;
{
+ if (abfd == NULL)
+ PC = bfd_get_start_address (prog_bfd);
+ else
+ PC = 0; /* ??? */
return SIM_RC_OK;
}
@@ -917,7 +922,6 @@ sim_load (sd, prog, abfd, from_tty)
sim_kind == SIM_OPEN_DEBUG);
if (prog_bfd == NULL)
return SIM_RC_FAIL;
- PC = bfd_get_start_address (prog_bfd);
prog_bfd_was_opened_p = abfd == NULL;
return SIM_RC_OK;
}
OpenPOWER on IntegriCloud