1 /* main.c --- main function for stand-alone M32C simulator.
3 Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
4 Contributed by Red Hat, Inc.
6 This file is part of the GNU simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
38 static int disassemble = 0;
39 static unsigned int cycles = 0;
48 printf ("insns: %14s\n", comma (cycles));
54 main (int argc, char **argv)
60 while ((o = getopt (argc, argv, "tvdm:")) != -1)
73 if (strcmp (optarg, "r8c") == 0 || strcmp (optarg, "m16c") == 0)
74 default_machine = bfd_mach_m16c;
75 else if (strcmp (optarg, "m32cm") == 0
76 || strcmp (optarg, "m32c") == 0)
77 default_machine = bfd_mach_m32c;
80 fprintf (stderr, "Invalid machine: %s\n", optarg);
86 "usage: run [-v] [-t] [-d] [-m r8c|m16c|m32cm|m32c]"
91 prog = bfd_openr (argv[optind], 0);
94 fprintf (stderr, "Can't read %s\n", argv[optind]);
98 if (!bfd_check_format (prog, bfd_object))
100 fprintf (stderr, "%s not a m32c program\n", argv[optind]);
110 sim_disasm_init (prog);
122 enable_counting = verbose;
124 rc = decode_opcode ();
127 if (M32C_HIT_BREAK (rc))
129 else if (M32C_EXITED (rc))
130 done (M32C_EXIT_STATUS (rc));
132 assert (M32C_STEPPED (rc));
134 trace_register_changes ();