diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-21 17:07:20 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-21 17:07:20 +0000 |
commit | bd7a7b33df84cb053f9d2ac774d77372e4065d5f (patch) | |
tree | 0a50cda446062f042d8ee07ae88dc92d6b05bf78 /target-i386/helper.h | |
parent | convert remaining segment handling to TCG (diff) | |
download | qemu-kvm-bd7a7b33df84cb053f9d2ac774d77372e4065d5f.tar.gz qemu-kvm-bd7a7b33df84cb053f9d2ac774d77372e4065d5f.tar.bz2 qemu-kvm-bd7a7b33df84cb053f9d2ac774d77372e4065d5f.zip |
convert eflags manipulation insns to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4515 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.h')
-rw-r--r-- | target-i386/helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target-i386/helper.h b/target-i386/helper.h index e0ff417b2..9df198a0e 100644 --- a/target-i386/helper.h +++ b/target-i386/helper.h @@ -2,6 +2,8 @@ void helper_lock(void); void helper_unlock(void); +void helper_write_eflags(target_ulong t0, uint32_t update_mask); +target_ulong helper_read_eflags(void); void helper_divb_AL(target_ulong t0); void helper_idivb_AL(target_ulong t0); void helper_divw_AX(target_ulong t0); |