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
|
|
|
|
1993-10-27 01:01:03 +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
|
|
|
}
|
1993-07-10 05:42:02 +08:00
|
|
|
else if (strcmp(av[i],"-h") == 0)
|
|
|
|
set_h8300h ();
|
1993-06-11 04:38:39 +08:00
|
|
|
else
|
1993-06-25 04:43:41 +08:00
|
|
|
name = av[i];
|
|
|
|
}
|
1993-06-09 05:16:33 +08:00
|
|
|
|
1993-06-25 04:43:41 +08:00
|
|
|
if (verbose)
|
|
|
|
printf ("run %s\n", name);
|
1993-06-11 04:38:39 +08:00
|
|
|
|
1993-07-16 01:01:40 +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
|
|
|
{
|
1993-07-16 01:01:40 +08:00
|
|
|
if (abfd->arch_info->mach == bfd_mach_h8300h)
|
|
|
|
set_h8300h ();
|
1993-06-11 04:38:39 +08:00
|
|
|
|
1993-07-16 01:01:40 +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
|
|
|
}
|
1993-07-16 01:01:40 +08:00
|
|
|
|
|
|
|
start_address = bfd_get_start_address(abfd);
|
1993-10-27 01:01:03 +08:00
|
|
|
sim_set_pc (start_address);
|
1993-07-16 01:01:40 +08:00
|
|
|
sim_resume(0,0);
|
|
|
|
if (verbose)
|
1993-10-27 01:01:03 +08:00
|
|
|
sim_info (printf, verbose - 1);
|
1993-07-16 01:01:40 +08:00
|
|
|
return 0;
|
1993-06-02 02:20:29 +08:00
|
|
|
}
|
1993-07-16 01:01:40 +08:00
|
|
|
}
|
1992-12-23 05:59:06 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|