diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-26 08:35:18 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-26 08:35:18 +0000 |
commit | 88fe8a41f2abbee28948626a4e6426d17f0498bf (patch) | |
tree | a0cc7663595696979a4203af8153df8f6b694761 /target-i386/op.c | |
parent | b3ceef24f4fee8d5ed96b8c4a5d3e80c0a651f0b (diff) |
DR6 single step exception status bit, by Juergen Keil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3024 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index a8cfce271b..ea8aec6b51 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -730,6 +730,11 @@ void OPPROTO op_cmpxchg8b(void) helper_cmpxchg8b(); } +void OPPROTO op_single_step(void) +{ + helper_single_step(); +} + void OPPROTO op_movl_T0_0(void) { T0 = 0; |