+Fri Oct 6 11:56:49 1995 Jim Wilson <wilson@chestnut.cygnus.com>
+
+ * remote-sim.c (gdbsim_open): Put callback initializations here.
+ (_initalize_remote_sim): Not here.
+
Fri Oct 6 17:08:49 1995 Stan Shebs <shebs@andros.cygnus.com>
* top.c (execute_control_command): Use 0/1 instead of BFD's
if (sr_get_debug ())
printf_filtered ("gdbsim_open: args \"%s\"\n", args ? args : "(null)");
sim_open (args);
+
+ sim_set_callbacks (&default_callback);
+ default_callback.init (&default_callback);
+
push_target (&gdbsim_ops);
target_fetch_registers (-1);
printf_filtered ("Connected to the simulator.\n");
add_com ("sim <command>", class_obscure, simulator_command,
"Send a command to the simulator.");
-
- sim_set_callbacks (&default_callback);
- default_callback.init (&default_callback);
}