* h8300-tdep.c, h8500-tdep.c: Define sim_load only, but not
authorJim Kingdon <jkingdon@engr.sgi.com>
Sat, 16 Oct 1993 04:59:47 +0000 (04:59 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sat, 16 Oct 1993 04:59:47 +0000 (04:59 +0000)
sim_kill, sim_open, or sim_set_args.

gdb/h8300-tdep.c
gdb/h8500-tdep.c

index ba5a9b9efa87f25eef031cf3dec3350cd366930a..e139174128a88081dc3000130c6284336df125f0 100644 (file)
@@ -482,8 +482,9 @@ print_register_hook (regno)
     }
 }
 
-
-/* Callbacks for remote-sim */
+/* This doesn't quite fit either in the simulator or in gdb proper.
+   Perhaps the simulator could return 1 to mean it loaded it and 0 to
+   mean "you deal with it, caller".  */
 
 int 
 sim_load (abfd, prog)
@@ -492,20 +493,3 @@ char *prog;
 {
   return sim_load_standard (abfd); 
 }
-
-void
-sim_kill()
-{
-}
-
-sim_open ()
-{
-  return 0;
-}
-
-sim_set_args(argv, env)
-char **argv;
-char **env;
-{
-  return 0;
-}
index dcf80a0adefe100a60d0efcf7741d4f48502fd9a..0ffb02b2e05e69ef568c47eb7978dd13df61b7d8 100644 (file)
@@ -817,3 +817,15 @@ target_write_fp (v)
   write_register (SEG_T_REGNUM, v >> 16);
   write_register (FP_REGNUM, v & 0xffff);
 }
+
+/* This doesn't quite fit either in the simulator or in gdb proper.
+   Perhaps the simulator could return 1 to mean it loaded it and 0 to
+   mean "you deal with it, caller".  */
+
+int 
+sim_load (abfd, prog)
+bfd *abfd;
+char *prog;
+{
+  return sim_load_standard (abfd); 
+}