binutils-gdb/sim/h8300/run.c

86 lines
1.7 KiB
C
Raw Normal View History

1993-02-12 06:54:38 +08:00
/* front end to the simulator.
1992-12-23 05:59:06 +08:00
1993-02-12 06:54:38 +08:00
Written by Steve Chamberlain of Cygnus Support.
sac@cygnus.com
1992-12-23 05:59:06 +08:00
1993-02-12 06:54:38 +08:00
This file is part of H8/300 sim
1992-12-23 05:59:06 +08:00
1993-02-12 06:54:38 +08:00
THIS SOFTWARE IS NOT COPYRIGHTED
1992-12-23 05:59:06 +08:00
1993-02-12 06:54:38 +08:00
Cygnus offers the following for use in the public domain. Cygnus
makes no warranty with regard to the software or it's performance
and the user accepts the software "AS IS" with all faults.
1992-12-23 05:59:06 +08:00
1993-02-12 06:54:38 +08:00
CYGNUS DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO
THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
1992-12-23 05:59:06 +08:00
#include <stdio.h>
1992-12-23 05:59:06 +08:00
#include "bfd.h"
#include "sysdep.h"
int
1993-06-02 02:20:29 +08:00
main (ac, av)
int ac;
char **av;
1992-12-23 05:59:06 +08:00
{
bfd *abfd;
bfd_vma start_address;
asection *s;
int i;
int verbose = 0;
int trace = 0;
char *name = "";
for (i = 1; i < ac; i++)
{
1993-06-11 04:38:39 +08:00
if (strcmp(av[i],"-v") == 0)
verbose++;
else if (strcmp(av[i],"-t") == 0)
1993-06-02 02:20:29 +08:00
{
trace = 1;
}
1993-06-11 04:38:39 +08:00
else if (strcmp(av[i],"-c") == 0)
1993-06-02 02:20:29 +08:00
{
1993-06-11 04:38:39 +08:00
sim_csize(atoi(av[i+1]));
i++;
1993-06-02 02:20:29 +08:00
}
else if (strcmp(av[i],"-h") == 0)
set_h8300h ();
1993-06-11 04:38:39 +08:00
else
name = av[i];
}
1993-06-09 05:16:33 +08:00
if (verbose)
printf ("run %s\n", name);
1993-06-11 04:38:39 +08:00
abfd = bfd_openr (name, "coff-h8300");
if (abfd)
{
if (bfd_check_format(abfd, bfd_object))
1993-06-11 04:38:39 +08:00
{
if (abfd->arch_info->mach == bfd_mach_h8300h)
set_h8300h ();
1993-06-11 04:38:39 +08:00
for (s = abfd->sections; s; s=s->next)
{
char *buffer = malloc(bfd_section_size(abfd,s));
bfd_get_section_contents(abfd, s, buffer, 0, bfd_section_size(abfd,s));
sim_write(s->vma, buffer, bfd_section_size(abfd,s));
1993-06-11 04:38:39 +08:00
}
start_address = bfd_get_start_address(abfd);
sim_set_pc (start_address);
sim_resume(0,0);
if (verbose)
sim_info (printf, verbose - 1);
return 0;
1993-06-02 02:20:29 +08:00
}
}
1992-12-23 05:59:06 +08:00
return 1;
}