diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-05-19 03:42:33 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-05-19 03:42:33 +0000 |
commit | f03b093cd34bc352ad89334a43a34b00a5e5c60c (patch) | |
tree | b9d428d2bdf6dd5f5f5a25a7df7580c3836af9e4 /sim/tic80/Makefile.in | |
parent | 11ab132f168d3c24d4b4d743d86599973b17e3f2 (diff) | |
download | gdb-f03b093cd34bc352ad89334a43a34b00a5e5c60c.zip gdb-f03b093cd34bc352ad89334a43a34b00a5e5c60c.tar.gz gdb-f03b093cd34bc352ad89334a43a34b00a5e5c60c.tar.bz2 |
o Implement generic halt/restart/abort module.
Use in tic80 and d30v simulators.
o Add signal hook to sim-core module
Diffstat (limited to 'sim/tic80/Makefile.in')
-rw-r--r-- | sim/tic80/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sim/tic80/Makefile.in b/sim/tic80/Makefile.in index dbfb4b6..9075ac7 100644 --- a/sim/tic80/Makefile.in +++ b/sim/tic80/Makefile.in @@ -10,7 +10,7 @@ # Not all of these need to be mentioned, only the necessary ones. # List of object files, less common parts. -SIM_OBJS = sim-endian.o sim-bits.o sim-config.o interp.o \ +SIM_OBJS = sim-endian.o sim-bits.o sim-config.o \ support.o idecode.o semantics.o itable.o misc.o \ sim-calls.o \ sim-events.o \ @@ -22,7 +22,12 @@ SIM_OBJS = sim-endian.o sim-bits.o sim-config.o interp.o \ sim-options.o \ sim-trace.o \ sim-profile.o \ - sim-fpu.o + sim-fpu.o \ + sim-engine.o \ + sim-run.o \ + sim-resume.o \ + sim-stop.o \ + sim-reason.o # List of extra dependencies. # Generally this consists of simulator specific files included by sim-main.h. @@ -142,6 +147,7 @@ ENGINE_H = \ $(srcdir)/../common/sim-core.h \ $(srcdir)/../common/sim-events.h \ $(srcdir)/../common/sim-fpu.h \ + $(srcdir)/../common/sim-engine.h \ idecode.o: $(ENGINE_H) semantics.o: $(ENGINE_H) |