diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-04 15:21:33 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-04 15:21:33 +0000 |
commit | 3415a4ddb4dc88a206b25cc4daec4b506bfa5096 (patch) | |
tree | f82c08692532c8796cf1823b5f27516656670875 /target-i386/op.c | |
parent | b7f0f463a55e4f4bded580905582f2dfa6652fca (diff) |
invd and wbinvd support - fixed code gen logic for invlpg - simpler exception handling in load_seg()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@487 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index 5423be5a3a..63e34cf01f 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -907,7 +907,7 @@ void OPPROTO op_das(void) /* never use it with R_CS */ void OPPROTO op_movl_seg_T0(void) { - load_seg(PARAM1, T0 & 0xffff, PARAM2); + load_seg(PARAM1, T0); } /* faster VM86 version */ |