1d89709e62
Reimplemented CPUDB using pure C macros magic. Fixed compilation errors when compiling with SMP on.
842 lines
46 KiB
Makefile
842 lines
46 KiB
Makefile
# Copyright (C) 2001-2009 The Bochs Project
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
|
|
|
|
|
@SUFFIX_LINE@
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_builddir = ..
|
|
top_srcdir = @top_srcdir@
|
|
|
|
SHELL = /bin/sh
|
|
|
|
@SET_MAKE@
|
|
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@ @GUI_CXXFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @LIBS@
|
|
X_LIBS = @X_LIBS@
|
|
X_PRE_LIBS = @X_PRE_LIBS@
|
|
RANLIB = @RANLIB@
|
|
|
|
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
|
|
|
# Objects which are synced between the cpu and cpu64 code and
|
|
# are used for either compile.
|
|
OBJS = \
|
|
init.o \
|
|
cpu.o \
|
|
icache.o \
|
|
resolver.o \
|
|
fetchdecode.o \
|
|
access.o \
|
|
access32.o \
|
|
shift16.o \
|
|
logical16.o \
|
|
ctrl_xfer32.o \
|
|
ctrl_xfer16.o \
|
|
mmx.o \
|
|
3dnow.o \
|
|
fpu_emu.o \
|
|
sse.o \
|
|
sse_move.o \
|
|
sse_pfp.o \
|
|
sse_rcp.o \
|
|
sse_string.o \
|
|
avx.o \
|
|
avx_pfp.o \
|
|
xsave.o \
|
|
aes.o \
|
|
vmx.o \
|
|
vmcs.o \
|
|
vmexit.o \
|
|
soft_int.o \
|
|
apic.o \
|
|
bcd.o \
|
|
mult16.o \
|
|
tasking.o \
|
|
shift32.o \
|
|
shift8.o \
|
|
arith8.o \
|
|
stack16.o \
|
|
protect_ctrl.o \
|
|
mult8.o \
|
|
load.o \
|
|
data_xfer8.o \
|
|
vm8086.o \
|
|
logical8.o \
|
|
logical32.o \
|
|
arith16.o \
|
|
segment_ctrl.o \
|
|
data_xfer16.o \
|
|
data_xfer32.o \
|
|
exception.o \
|
|
generic_cpuid.o \
|
|
proc_ctrl.o \
|
|
crregs.o \
|
|
msr.o \
|
|
smm.o \
|
|
lazy_flags.o \
|
|
flag_ctrl_pro.o \
|
|
stack32.o \
|
|
debugstuff.o \
|
|
flag_ctrl.o \
|
|
mult32.o \
|
|
arith32.o \
|
|
jmp_far.o \
|
|
call_far.o \
|
|
ret_far.o \
|
|
iret.o \
|
|
ctrl_xfer_pro.o \
|
|
segment_ctrl_pro.o \
|
|
io.o \
|
|
crc32.o \
|
|
bit.o \
|
|
bit16.o \
|
|
bit32.o \
|
|
string.o \
|
|
paging.o
|
|
|
|
# Objects which are only used for x86-64 code
|
|
OBJS64 = \
|
|
access64.o \
|
|
arith64.o \
|
|
ctrl_xfer64.o \
|
|
data_xfer64.o \
|
|
fetchdecode64.o \
|
|
logical64.o \
|
|
mult64.o \
|
|
shift64.o \
|
|
bit64.o \
|
|
stack64.o
|
|
|
|
CPUDB_OBJS = cpudb/corei7_sandy_bridge_2600K.o \
|
|
cpudb/core2_extreme_x9770.o \
|
|
cpudb/p4_prescott_celeron_336.o \
|
|
cpudb/athlon64_clawhammer.o \
|
|
cpudb/p3_katmai.o \
|
|
cpudb/p4_willamette.o
|
|
|
|
BX_INCLUDES = ../bochs.h ../config.h
|
|
|
|
|
|
all: libcpu.a
|
|
|
|
.@CPP_SUFFIX@.o:
|
|
$(CXX) @DASH@c $(BX_INCDIRS) $(CXXFLAGS) @CXXFP@$< @OFP@$@
|
|
|
|
|
|
libcpu.a: $(OBJS) $(CPUDB_OBJS) @OBJS64@
|
|
@RMCOMMAND@ libcpu.a
|
|
@MAKELIB@ $(OBJS) $(CPUDB_OBJS) @OBJS64@
|
|
$(RANLIB) libcpu.a
|
|
|
|
$(OBJS): $(BX_INCLUDES)
|
|
|
|
$(OBJS64): $(BX_INCLUDES)
|
|
|
|
$(CPUDB_OBJS): $(BX_INCLUDES)
|
|
|
|
clean:
|
|
@RMCOMMAND@ *.o
|
|
@RMCOMMAND@ *.a
|
|
cd cpudb && @RMCOMMAND@ *.o *.a
|
|
@CD_UP_ONE@
|
|
|
|
dist-clean: clean
|
|
@RMCOMMAND@ Makefile
|
|
|
|
###########################################
|
|
# dependencies generated by
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc | sed 's/\.cc/.@CPP_SUFFIX@/g'
|
|
###########################################
|
|
3dnow.o: 3dnow.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
access.o: access.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
access32.o: access32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
access64.o: access64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
aes.o: aes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
apic.o: apic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h ../iodev/iodev.h \
|
|
../param_names.h
|
|
arith16.o: arith16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
arith32.o: arith32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
arith64.o: arith64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
arith8.o: arith8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
avx.o: avx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
avx_pfp.o: avx_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h ../fpu/softfloat-compare.h ../fpu/softfloat.h \
|
|
../fpu/softfloat-specialize.h
|
|
bcd.o: bcd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
bit.o: bit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
bit16.o: bit16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
bit32.o: bit32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
bit64.o: bit64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
call_far.o: call_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
cpu.o: cpu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h ../iodev/iodev.h \
|
|
../param_names.h
|
|
crc32.o: crc32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
crregs.o: crregs.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
ctrl_xfer16.o: ctrl_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
ctrl_xfer32.o: ctrl_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
ctrl_xfer64.o: ctrl_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
ctrl_xfer_pro.o: ctrl_xfer_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
data_xfer16.o: data_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
data_xfer32.o: data_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
data_xfer64.o: data_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
data_xfer8.o: data_xfer8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
debugstuff.o: debugstuff.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h ../disasm/disasm.h
|
|
exception.o: exception.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h ../param_names.h ../iodev/iodev.h
|
|
fetchdecode.o: fetchdecode.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h fetchdecode.h fetchdecode_x87.h \
|
|
fetchdecode_sse.h fetchdecode_avx.h
|
|
fetchdecode64.o: fetchdecode64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h fetchdecode.h fetchdecode_x87.h \
|
|
fetchdecode_sse.h fetchdecode_avx.h
|
|
flag_ctrl.o: flag_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
flag_ctrl_pro.o: flag_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
fpu_emu.o: fpu_emu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
generic_cpuid.o: generic_cpuid.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h ../param_names.h generic_cpuid.h ../cpu/cpuid.h
|
|
icache.o: icache.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
init.o: init.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h ../param_names.h \
|
|
generic_cpuid.h ../cpu/cpuid.h ../cpudb.h
|
|
io.o: io.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h ../iodev/iodev.h \
|
|
../param_names.h
|
|
iret.o: iret.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
jmp_far.o: jmp_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
lazy_flags.o: lazy_flags.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
load.o: load.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
logical16.o: logical16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
logical32.o: logical32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
logical64.o: logical64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
logical8.o: logical8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
mmx.o: mmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
msr.o: msr.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
mult16.o: mult16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
mult32.o: mult32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
mult64.o: mult64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
mult8.o: mult8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
paging.o: paging.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
proc_ctrl.o: proc_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h ../param_names.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h \
|
|
../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
protect_ctrl.o: protect_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
resolver.o: resolver.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
ret_far.o: ret_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
segment_ctrl.o: segment_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
segment_ctrl_pro.o: segment_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
shift16.o: shift16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
shift32.o: shift32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
shift64.o: shift64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
shift8.o: shift8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
smm.o: smm.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h smm.h
|
|
soft_int.o: soft_int.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
sse.o: sse.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
sse_move.o: sse_move.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
sse_pfp.o: sse_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h ../fpu/softfloat-compare.h ../fpu/softfloat.h \
|
|
../fpu/softfloat-specialize.h
|
|
sse_rcp.o: sse_rcp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h ../fpu/softfloat-specialize.h \
|
|
../fpu/softfloat.h
|
|
sse_string.o: sse_string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
stack16.o: stack16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
stack32.o: stack32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
stack64.o: stack64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
string.o: string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
tasking.o: tasking.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
../gui/siminterface.h ../gui/paramtree.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h ../cpu/i387.h \
|
|
../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
../cpu/xmm.h vmx.h stack.h
|
|
vm8086.o: vm8086.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
vmcs.o: vmcs.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
vmexit.o: vmexit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
vmx.o: vmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h ../iodev/iodev.h \
|
|
../param_names.h
|
|
xsave.o: xsave.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h
|
|
cpudb/corei7_sandy_bridge_2600K.o: cpudb/corei7_sandy_bridge_2600K.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/corei7_sandy_bridge_2600K.h
|
|
cpudb/core2_extreme_x9770.o: cpudb/core2_extreme_x9770.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/core2_extreme_x9770.h
|
|
cpudb/p4_prescott_celeron_336.o: cpudb/p4_prescott_celeron_336.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/p4_prescott_celeron_336.h
|
|
cpudb/athlon64_clawhammer.o: cpudb/athlon64_clawhammer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/athlon64_clawhammer.h
|
|
cpudb/p3_katmai.o: cpudb/p3_katmai.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/p3_katmai.h
|
|
cpudb/p4_willamette.o: cpudb/p4_willamette.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
../extplugin.h ../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h ../cpu/i387.h ../fpu/softfloat.h ../fpu/tag_w.h ../fpu/status_w.h \
|
|
../fpu/control_w.h ../cpu/xmm.h vmx.h stack.h cpudb/p4_willamette.h
|