aboutsummaryrefslogtreecommitdiff
path: root/sim/common/run.c
AgeCommit message (Collapse)AuthorFilesLines
2003-06-052003-06-04 Michael Snyder <msnyder@redhat.com>Michael Snyder1-22/+0
* common/run.c (main): Remove SIM_H8300 ifdef. (usage): Ditto. * common/sim-options.c (STANDARD_OPTIONS): Add SIM_H8300SX. (standard_options): Add '-x' for h8/300sx. (standard_option_handler): Add case for SIM_H8300SX.
2003-01-08 * run.c (usage): Fix typos.Kazu Hirata1-2/+2
2002-11-14Index: common/ChangeLogAndrew Cagney1-1/+1
2002-11-13 Andrew Cagney <cagney@redhat.com> * run.c (main): Remove SIM_HAVE_ENVIRONMENT from #endif. Index: d10v/ChangeLog 2002-11-13 Andrew Cagney <cagney@redhat.com> * simops.c: Include <string.h>.
2002-06-09Move include/callback.h and include/remote-sim.h to include/gdb/.Andrew Cagney1-2/+2
Update accordingly.
2002-05-31 * run.c: Fix formatting.Kazu Hirata1-14/+14
2002-05-20Add support for target specific command line switches to old-style simualtors.Nick Clifton1-1/+10
Make use of this support in the ARM simulator to add a --swi-support= switch to select whcih SWI protocols to emulate.
2002-05-17* h8300s now new target, not alias of h8300hAndrey Volkov1-3/+7
2001-12-21 * run.c (usage): Fix a typo.Kazu Hirata1-1/+1
2001-03-07Remove reference to alloca-conf.hMichael Meissner1-2/+0
2000-05-23sigrc wasn't initialized before being passed to sim_resume().Andrew Cagney1-0/+2
2000-02-22When SIM_HAVE_ENVIRONMENT: use sim_set_trace() to enable tracingAndrew Cagney1-15/+36
instead of sim_trace() to run the program; include support for ``-o'' option (operating environment); when a signal occurs, only continue execution when operating environment mode. Update d10v.
2000-02-09Report SIGBUS and halt simulation when ld/st detect a misaligned address.Andrew Cagney1-6/+10
2000-02-08Fix compile time warning messages.Nick Clifton1-1/+2
1999-04-26import gdb-19990422 snapshotStan Shebs1-1/+5
1999-04-16Initial creation of sourceware repositorygdb-4_18-branchpointStan Shebs1-0/+308
1999-04-16Initial creation of sourceware repositoryStan Shebs1-303/+0
1997-08-25Add ABFD argument to sim_open call. Pass through to sim_config soAndrew Cagney1-3/+7
that image properties such as endianness can be checked. More strongly document the expected behavour of each of the sim_* interfaces. Add default endian argument to simulator config macro SIM_AC_OPTION_ENDIAN. Use in sim_config.
1997-05-20Depreciate sim_set_callbacks() function. Set simulator callbacksAndrew Cagney1-10/+12
during sim_open().
1997-04-23Restore exec_bfd, needed for v850 debug codeMichael Meissner1-1/+4
1997-04-18Ref gdb/11763 - can't stop a running simulator:Andrew Cagney1-1/+14
o Provide poll_quit callback to simulators so that they can poll for SIGINT on clueless OS's. o Add sim_stop to simulators so that clients can request a halt (eg gdbtk's STOP button) Works for PPC! o Re-arange remote-sim.c so that the hard work is moved from gdbsim_resume() to gdbsim_wait() (where it should be).
1997-04-17Fix copyright message, this is not GCC.David Edelsohn1-5/+5
1997-04-17 * run.c (main): Check return value of sim_open.David Edelsohn1-0/+2
1997-04-17 * Make-common.in (sim-options.o, sim-load.o): Add rules for.David Edelsohn1-42/+32
(sim_main_headers): Add sim-trace.h. * run.c (exec_bfd, target_byte_order): Delete. (main): Pass -E <endian> to sim_open. Delete code to load sections, call sim_load instead. Check return code of sim_create_inferior. * sim-base.h (CURRENT_STATE): Define. (sim_state_base): Make typedef. New members options, prog_argv, prog_bfd, text_{section,start,end}, start_addr, simcache_size, mem_size, memory [+ corresponding access macros]. (sim_cpu_base): New typedef. * sim-trace.h: New file. * sim-basics.h: #include it. * sim-load.c: New file.
1997-04-02 * run.c (main): Pass SIM_OPEN_STANDALONE to sim_open.David Edelsohn1-1/+3
1997-03-21Pass GCC -W...Andrew Cagney1-56/+160
1996-10-15Better error messages when a program stops due to signal; support d10v ↵Michael Meissner1-2/+14
getpid/kill
1996-09-17Tue Sep 17 11:04:50 1996 James G. Smith <jsmith@cygnus.co.uk>Jackie Smith Cashion1-7/+16
* run.c (main): Explicitly cast malloc() parameter. This is needed because for certain builds the size field being given to malloc() is actually 64bits long, and without a cast or malloc prototype the resulting value used by malloc() depended on the host endianness, and how long long paramaters are passed into functions.
1996-09-12Store bfd pointer in a global variableMichael Meissner1-6/+11
1995-10-22Fix SH simulator to handle program exit correctly.Jim Wilson1-42/+50
1995-10-06 * common/run.c (main): Initialize the callbacks.Jim Wilson1-0/+149