diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-03-26 22:26:53 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-03-26 22:26:53 +0000 |
commit | 08cea4eef8e17114dcdbce93f95cb111c9d622f6 (patch) | |
tree | d708e9ce4d32057cd80834b7ca7c131e12a09d89 /target-i386/op.c | |
parent | 883da8e21932b24630f87ed4d801ea1ad48b735b (diff) |
fixed ljmp and iret to TSS
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@682 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index f592b67a6a..1169f121ad 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -918,7 +918,7 @@ void OPPROTO op_arpl_update(void) /* T0: segment, T1:eip */ void OPPROTO op_ljmp_protected_T0_T1(void) { - helper_ljmp_protected_T0_T1(); + helper_ljmp_protected_T0_T1(PARAM1); } void OPPROTO op_lcall_real_T0_T1(void) @@ -938,7 +938,7 @@ void OPPROTO op_iret_real(void) void OPPROTO op_iret_protected(void) { - helper_iret_protected(PARAM1); + helper_iret_protected(PARAM1, PARAM2); } void OPPROTO op_lret_protected(void) |