aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/Makefile
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 /tools/tests/Makefile
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 'tools/tests/Makefile')
-rw-r--r--tools/tests/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/tests/Makefile b/tools/tests/Makefile
index 3e8962a714..015e8ae256 100644
--- a/tools/tests/Makefile
+++ b/tools/tests/Makefile
@@ -7,6 +7,8 @@ TARGET := test_x86_emulator
CC := gcc
CFLAGS := -O2 -Wall -Werror -D__TEST_HARNESS__
+all: $(TARGET)
+
$(TARGET): x86_emulate.o test_x86_emulator.o
$(CC) -o $@ $^