diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-13 08:47:18 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-13 08:47:18 +0000 |
commit | 39762100979423101cb7a7c577b573df0b8d44a9 (patch) | |
tree | 755c886f080211e8cf765141f7f93bb8e83f685e /sim | |
parent | ca156d780d6f749d68153f2f2066f8e696103d7e (diff) | |
download | fsf-binutils-gdb-39762100979423101cb7a7c577b573df0b8d44a9.zip fsf-binutils-gdb-39762100979423101cb7a7c577b573df0b8d44a9.tar.gz fsf-binutils-gdb-39762100979423101cb7a7c577b573df0b8d44a9.tar.bz2 |
* interp.c (sim_hw_configure): Return 1 for success.
(sim_prepare_for_program): Use the sim_hw_configure exit code to
return SIM_RC_FAIL.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/m68hc11/ChangeLog | 6 | ||||
-rw-r--r-- | sim/m68hc11/interp.c | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 444a0cc..d6c3863 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,9 @@ +2002-08-13 Marko Kohtala <marko.kohtala@luukku.com> + + * interp.c (sim_hw_configure): Return 1 for success. + (sim_prepare_for_program): Use the sim_hw_configure exit code to + return SIM_RC_FAIL. + 2002-08-13 Stephane Carrez <stcarrez@nerim.fr> * dv-m68hc11.c (m68hc11cpu_io_read_buffer): Translate memory diff --git a/sim/m68hc11/interp.c b/sim/m68hc11/interp.c index 1f3b86f..8889da6 100644 --- a/sim/m68hc11/interp.c +++ b/sim/m68hc11/interp.c @@ -166,7 +166,7 @@ sim_board_reset (SIM_DESC sd) cpu_restart (cpu); } -int +static int sim_hw_configure (SIM_DESC sd) { const struct bfd_arch_info *arch; @@ -291,7 +291,7 @@ sim_hw_configure (SIM_DESC sd) sim_hw_parse (sd, "/m68hc12 > port-d cpu-write-port /m68hc12"); cpu->hw_cpu = sim_hw_parse (sd, "/m68hc12"); } - return 0; + return 1; } static int @@ -301,7 +301,9 @@ sim_prepare_for_program (SIM_DESC sd, struct _bfd* abfd) cpu = STATE_CPU (sd, 0); - sim_hw_configure (sd); + if (!sim_hw_configure (sd)) + return SIM_RC_FAIL; + if (abfd != NULL) { cpu->cpu_elf_start = bfd_get_start_address (abfd); |