diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-29 22:42:33 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-29 22:42:33 -0400 |
commit | ca968da465a0d1fd153b158b7aa69730709f43db (patch) | |
tree | 54111607fad052baa55d6b8e69b9a1097b79331a /sim/cr16/interp.c | |
parent | 4daf7a7c3a8404d8be973702ffe00541f71606a4 (diff) | |
download | fsf-binutils-gdb-ca968da465a0d1fd153b158b7aa69730709f43db.zip fsf-binutils-gdb-ca968da465a0d1fd153b158b7aa69730709f43db.tar.gz fsf-binutils-gdb-ca968da465a0d1fd153b158b7aa69730709f43db.tar.bz2 |
sim: cr16: use common configure options
In preparation for converting to nrun, call the common functions that
are needed. This doesn't produce any new warnings, and the generated
code should be the same.
Diffstat (limited to 'sim/cr16/interp.c')
-rw-r--r-- | sim/cr16/interp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/cr16/interp.c b/sim/cr16/interp.c index 9c85948..b6ded50 100644 --- a/sim/cr16/interp.c +++ b/sim/cr16/interp.c @@ -1401,6 +1401,14 @@ sim_set_callbacks (p) cr16_callback = p; } +int +sim_trace (SIM_DESC sd) +{ + sim_resume (sd, 0, 0); + + return 1; +} + void sim_stop_reason (sd, reason, sigrc) SIM_DESC sd; |