diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-31 23:31:02 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-31 23:31:02 +0000 |
commit | 1ef386870812993f6819e8ac6554d20ba532b383 (patch) | |
tree | 67a32e6d7b1371298b6854b120fab6f6ff86ca39 /target-i386/op.c | |
parent | 99c475abf16b10923baac09682a9d801ae421ac6 (diff) |
x86_64 call Ev fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1259 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 79545b51a9..933595da65 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -517,6 +517,11 @@ void OPPROTO op_movq_T0_im64(void) T0 = PARAMQ1; } +void OPPROTO op_movq_T1_im64(void) +{ + T1 = PARAMQ1; +} + void OPPROTO op_movq_A0_im(void) { A0 = (int32_t)PARAM1; |