summaryrefslogtreecommitdiffstats
path: root/util/x86emu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/x86emu/Makefile')
-rw-r--r--util/x86emu/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/x86emu/Makefile b/util/x86emu/Makefile
index 2c915d466bd5..1df5d8977118 100644
--- a/util/x86emu/Makefile
+++ b/util/x86emu/Makefile
@@ -37,7 +37,7 @@ X86EMU_INCLUDE += -I $(src)/util/x86emu
#TODO: remove these, these are .h files from slof, to make the merge easier...
X86EMU_INCLUDE += -I $(src)/util/x86emu/yabel/compat
endif
-REALMODE_SRC = x86.c x86_asm.S
+VM86_SRC = vm86.c vm86_gdt.c
ifeq ($(CONFIG_PCI_OPTION_ROM_RUN_X86EMU),y)
LIBX86EMU_SRC=$(patsubst %,x86emu/%,$(X86EMU_SRC)) $(BIOSEMU_SRC)
@@ -48,7 +48,7 @@ LIBX86EMU_SRC=$(patsubst %,x86emu/%,$(X86EMU_SRC)) $(patsubst %,yabel/%,$(BIOSEM
endif
ifeq ($(CONFIG_PCI_OPTION_ROM_RUN_REALMODE),y)
-LIBX86EMU_SRC=$(REALMODE_SRC)
+LIBX86EMU_SRC=$(VM86_SRC)
endif
LIBX86EMU_OBJS = $(patsubst %.c,$(obj)/util/x86emu/%.o,$(LIBX86EMU_SRC))