diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-05-02 05:31:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-05-02 05:31:34 +0000 |
commit | d9b75947387d9868a041a3472649754f68f62358 (patch) | |
tree | 9166f3649c75b57fb94c1d81854a7613cdc9aa9d /sim/tic80/sim-calls.c | |
parent | 2317a49939905f8aeb16b62ee6bd5e1f661f1357 (diff) | |
download | gdb-d9b75947387d9868a041a3472649754f68f62358.zip gdb-d9b75947387d9868a041a3472649754f68f62358.tar.gz gdb-d9b75947387d9868a041a3472649754f68f62358.tar.bz2 |
o Add core and event objects into simulator
base type
o Add preliminary tracing support for same
o trace_printf() takes both SD and CPU arguments
o Add CIA to standard set of parameters for
generated functions.
o Pacify GCC
Diffstat (limited to 'sim/tic80/sim-calls.c')
-rw-r--r-- | sim/tic80/sim-calls.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sim/tic80/sim-calls.c b/sim/tic80/sim-calls.c index 83d1948..438979c 100644 --- a/sim/tic80/sim-calls.c +++ b/sim/tic80/sim-calls.c @@ -26,7 +26,8 @@ #include "bfd.h" #include "sim-main.h" - +#include "sim-utils.h" +#include "sim-options.h" #ifdef HAVE_STDLIB_H #include <stdlib.h> @@ -51,10 +52,6 @@ struct sim_state simulation = { 0 }; SIM_DESC sim_open (SIM_OPEN_KIND kind, char **argv) { - /*FIXME - later make these configurable */ - static void *eit_ram; - static int sizeof_eit_ram = 0x1000; - STATE_OPEN_KIND (&simulation) = kind; /* establish the simulator configuration */ |