aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/x86_emulate.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-12-21 14:29:23 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-12-21 14:29:23 +0100
commitc19d7d74307693cd3c7e21ffe13747e1cd021066 (patch)
treefcb063df0fc6481980ad73bd754faca8a8fb29e9 /xen/include/asm-x86/x86_emulate.h
parent2eb236c17e09007ca172219cebeb9c16a73cc3b2 (diff)
downloadxen-c19d7d74307693cd3c7e21ffe13747e1cd021066.tar.gz
xen-c19d7d74307693cd3c7e21ffe13747e1cd021066.tar.bz2
xen-c19d7d74307693cd3c7e21ffe13747e1cd021066.zip
Add support for MOVSX/MOVSXD/MOVZX (move-with-extend)
instructions to the generic x86 emulator. Also add preliminary support for 16-bit addressing: decode the ModR/M byte properly but still need to access and update implicit memory operands (esp,esi,edi) with correct width. Work is also needed to support real-mode addressing. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/asm-x86/x86_emulate.h')
-rw-r--r--xen/include/asm-x86/x86_emulate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/asm-x86/x86_emulate.h b/xen/include/asm-x86/x86_emulate.h
index bfcc987f57..f6b6190215 100644
--- a/xen/include/asm-x86/x86_emulate.h
+++ b/xen/include/asm-x86/x86_emulate.h
@@ -164,6 +164,6 @@ x86_emulate_memop(
*/
extern void *
decode_register(
- u8 modrm_reg, struct cpu_user_regs *regs, int highbyte_regs);
+ uint8_t modrm_reg, struct cpu_user_regs *regs, int highbyte_regs);
#endif /* __X86_EMULATE_H__ */