2001-04-10 06:20:02 +04:00
|
|
|
# Copyright (C) 2001 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
#
|
|
|
|
# MandrakeSoft S.A.
|
|
|
|
# 43, rue d'Aboukir
|
|
|
|
# 75002 Paris - France
|
|
|
|
# http://www.linux-mandrake.com/
|
|
|
|
# http://www.mandrakesoft.com/
|
|
|
|
#
|
|
|
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
|
|
|
|
@SUFFIX_LINE@
|
|
|
|
|
2001-09-14 08:19:08 +04:00
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2002-10-25 01:07:56 +04:00
|
|
|
top_builddir = ..
|
|
|
|
top_srcdir = @top_srcdir@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
@SET_MAKE@
|
|
|
|
|
|
|
|
CXX = @CXX@
|
- add -lwinmm to the link lines anytime you use --enable-sb16=win. Now
instead of winmm being a part of GUI_LINK_OPTS_WIN32 only, it is
placed in @DEVICE_LINE_OPTS@ so that it will be used for sdl, rfb, wx,
etc.
- solve compile problems when building bximage, niclist, and any other
console based program. The compile flags returned by wx-config and
sdl-config did strange things to these console programs, for example
redefining main to SDL_main. Because I wanted to use the
configure-generated CFLAGS to compile the programs, but I wanted to
avoid including GUI specific compile options, I split up the configure's
@CFLAGS@ variable into @CFLAGS@ and @GUI_CFLAGS@, and split
@CXXFLAGS@ into @CXXFLAGS@ and @GUI_CXXFLAGS@. All programs in the
Bochs binary will use both, but the console programs will just use
@CFLAGS@ or @CXXFLAGS@.
- gui/Makefile.in, I no longer use the gui specific CFLAGS variables,
SDL_CFLAGS and WX_CXXFLAGS. These values are included in CFLAGS and
CXXFLAGS now.
- modified: configure.in, configure, all Makefile.in's
2002-10-02 03:37:50 +04:00
|
|
|
CXXFLAGS = @CXXFLAGS@ @GUI_CXXFLAGS@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBS = @LIBS@
|
|
|
|
X_LIBS = @X_LIBS@
|
|
|
|
X_PRE_LIBS = @X_PRE_LIBS@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-09-14 08:19:08 +04:00
|
|
|
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-09-12 11:16:37 +04:00
|
|
|
EXT_DEBUG_OBJS = @EXT_DEBUG_OBJS@
|
2001-05-23 12:16:07 +04:00
|
|
|
|
2002-09-13 06:56:14 +04:00
|
|
|
# Objects which are synced between the cpu and cpu64 code and
|
|
|
|
# are used for either compile.
|
2002-09-21 03:16:23 +04:00
|
|
|
OBJS = \
|
2002-09-14 04:51:46 +04:00
|
|
|
init.o \
|
2002-09-14 07:01:05 +04:00
|
|
|
cpu.o \
|
2008-01-18 00:15:23 +03:00
|
|
|
icache.o \
|
2002-09-13 20:23:02 +04:00
|
|
|
resolve32.o \
|
2002-09-14 03:59:24 +04:00
|
|
|
fetchdecode.o \
|
2002-09-13 08:33:42 +04:00
|
|
|
access.o \
|
2002-09-13 06:56:14 +04:00
|
|
|
shift16.o \
|
2002-09-13 08:33:42 +04:00
|
|
|
logical16.o \
|
|
|
|
resolve16.o \
|
|
|
|
ctrl_xfer32.o \
|
|
|
|
ctrl_xfer16.o \
|
|
|
|
mmx.o \
|
2003-05-15 20:41:17 +04:00
|
|
|
3dnow.o \
|
2004-05-17 23:50:43 +04:00
|
|
|
fpu_emu.o \
|
2002-10-16 21:37:35 +04:00
|
|
|
sse.o \
|
2002-12-22 23:13:00 +03:00
|
|
|
sse_move.o \
|
|
|
|
sse_pfp.o \
|
2003-12-31 02:06:59 +03:00
|
|
|
sse_rcp.o \
|
2007-10-01 23:59:37 +04:00
|
|
|
sse_string.o \
|
2008-02-13 01:41:39 +03:00
|
|
|
xsave.o \
|
2002-09-13 08:33:42 +04:00
|
|
|
soft_int.o \
|
|
|
|
io_pro.o \
|
2007-12-01 19:45:17 +03:00
|
|
|
apic.o \
|
2002-09-13 08:33:42 +04:00
|
|
|
bcd.o \
|
|
|
|
mult16.o \
|
2002-09-13 20:23:02 +04:00
|
|
|
tasking.o \
|
2002-09-13 21:04:14 +04:00
|
|
|
shift32.o \
|
|
|
|
shift8.o \
|
2002-09-13 21:28:14 +04:00
|
|
|
arith8.o \
|
|
|
|
stack16.o \
|
2002-09-14 01:08:54 +04:00
|
|
|
protect_ctrl.o \
|
2002-09-14 01:34:00 +04:00
|
|
|
mult8.o \
|
2002-09-14 01:47:21 +04:00
|
|
|
data_xfer8.o \
|
2002-09-14 02:02:11 +04:00
|
|
|
vm8086.o \
|
2002-09-14 02:20:45 +04:00
|
|
|
logical8.o \
|
|
|
|
logical32.o \
|
2002-09-14 02:31:02 +04:00
|
|
|
arith16.o \
|
2002-09-14 07:31:50 +04:00
|
|
|
segment_ctrl.o \
|
2002-09-14 21:29:47 +04:00
|
|
|
ctrl_xfer8.o \
|
|
|
|
data_xfer16.o \
|
|
|
|
data_xfer32.o \
|
|
|
|
exception.o \
|
2003-09-26 19:32:41 +04:00
|
|
|
cpuid.o \
|
2002-09-15 03:17:55 +04:00
|
|
|
proc_ctrl.o \
|
2006-02-14 22:00:08 +03:00
|
|
|
smm.o \
|
2002-09-15 04:18:41 +04:00
|
|
|
lazy_flags.o \
|
2002-09-15 05:00:20 +04:00
|
|
|
stack_pro.o \
|
|
|
|
flag_ctrl_pro.o \
|
|
|
|
stack32.o \
|
|
|
|
debugstuff.o \
|
|
|
|
flag_ctrl.o \
|
|
|
|
mult32.o \
|
2002-09-15 05:36:13 +04:00
|
|
|
arith32.o \
|
2005-08-02 02:06:19 +04:00
|
|
|
jmp_far.o \
|
|
|
|
call_far.o \
|
|
|
|
ret_far.o \
|
|
|
|
iret.o \
|
2002-09-15 06:23:12 +04:00
|
|
|
ctrl_xfer_pro.o \
|
|
|
|
segment_ctrl_pro.o \
|
2002-09-15 06:55:34 +04:00
|
|
|
io.o \
|
2002-09-15 07:38:52 +04:00
|
|
|
bit.o \
|
2007-12-07 13:59:18 +03:00
|
|
|
bit16.o \
|
|
|
|
bit32.o \
|
2002-09-15 09:09:18 +04:00
|
|
|
string.o \
|
2002-09-17 00:23:38 +04:00
|
|
|
paging.o \
|
2004-08-10 01:28:47 +04:00
|
|
|
$(EXT_DEBUG_OBJS)
|
2002-09-13 06:56:14 +04:00
|
|
|
|
2002-09-21 03:16:23 +04:00
|
|
|
# Objects which are only used for x86-64 code
|
2002-09-14 09:46:57 +04:00
|
|
|
OBJS64 = \
|
2002-09-13 19:53:22 +04:00
|
|
|
arith64.o \
|
|
|
|
ctrl_xfer64.o \
|
|
|
|
data_xfer64.o \
|
|
|
|
fetchdecode64.o \
|
|
|
|
logical64.o \
|
|
|
|
mult64.o \
|
|
|
|
resolve64.o \
|
|
|
|
shift64.o \
|
2007-12-07 13:59:18 +03:00
|
|
|
bit64.o \
|
2004-08-10 01:28:47 +04:00
|
|
|
stack64.o
|
2002-09-13 06:56:14 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_INCLUDES = ../bochs.h ../config.h
|
|
|
|
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
all: libcpu.a
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
.@CPP_SUFFIX@.o:
|
2002-10-25 01:07:56 +04:00
|
|
|
$(CXX) @DASH@c $(BX_INCDIRS) $(CXXFLAGS) @CXXFP@$< @OFP@$@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
2002-09-21 03:16:23 +04:00
|
|
|
libcpu.a: $(OBJS) @OBJS64@
|
2001-04-10 05:04:59 +04:00
|
|
|
@RMCOMMAND@ libcpu.a
|
2002-09-21 03:16:23 +04:00
|
|
|
@MAKELIB@ $(OBJS) @OBJS64@
|
2001-04-10 05:04:59 +04:00
|
|
|
$(RANLIB) libcpu.a
|
|
|
|
|
2002-09-21 03:16:23 +04:00
|
|
|
$(OBJS): $(BX_INCLUDES)
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-09-22 11:23:26 +04:00
|
|
|
$(OBJS64): $(BX_INCLUDES)
|
2002-09-13 19:53:22 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
clean:
|
|
|
|
@RMCOMMAND@ *.o
|
|
|
|
@RMCOMMAND@ *.a
|
|
|
|
|
|
|
|
dist-clean: clean
|
|
|
|
@RMCOMMAND@ Makefile
|
2001-10-07 04:33:21 +04:00
|
|
|
|
|
|
|
###########################################
|
|
|
|
# dependencies generated by
|
2002-11-25 18:05:51 +03:00
|
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc | sed 's/\.cc/.@CPP_SUFFIX@/g'
|
2001-10-07 04:33:21 +04:00
|
|
|
###########################################
|
2003-11-28 18:07:29 +03:00
|
|
|
3dnow.o: 3dnow.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
access.o: access.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
apic.o: apic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h \
|
|
|
|
../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
|
|
../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
|
|
|
|
../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.h
|
2004-06-18 18:11:11 +04:00
|
|
|
arith16.o: arith16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
arith32.o: arith32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
arith64.o: arith64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
arith8.o: arith8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
bcd.o: bcd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
bit.o: bit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
2007-12-07 13:59:18 +03:00
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-12-07 13:59:18 +03:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-12-07 13:59:18 +03:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-12-07 13:59:18 +03:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 \
|
2007-09-10 20:00:15 +04:00
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2008-01-18 00:15:23 +03:00
|
|
|
icache.o: icache.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2008-01-18 00:15:23 +03:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
cpu.o: cpu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h \
|
|
|
|
../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
|
|
../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
|
|
|
|
../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.h
|
2004-06-18 18:11:11 +04:00
|
|
|
cpuid.o: cpuid.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
ctrl_xfer16.o: ctrl_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
ctrl_xfer32.o: ctrl_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
ctrl_xfer64.o: ctrl_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
ctrl_xfer8.o: ctrl_xfer8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
ctrl_xfer_pro.o: ctrl_xfer_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
data_xfer16.o: data_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
data_xfer32.o: data_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
data_xfer64.o: data_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2001-10-08 00:19:04 +04:00
|
|
|
data_xfer8.o: data_xfer8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2001-10-08 00:19:04 +04:00
|
|
|
debugstuff.o: debugstuff.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2001-10-08 00:19:04 +04:00
|
|
|
exception.o: exception.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h ../iodev/iodev.h ../bochs.h ../iodev/pci.h \
|
|
|
|
../iodev/pci2isa.h ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h \
|
|
|
|
../iodev/vga.h ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.h
|
2004-06-18 18:11:11 +04:00
|
|
|
fetchdecode.o: fetchdecode.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h fetchdecode.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h fetchdecode.h
|
2004-06-18 18:11:11 +04:00
|
|
|
flag_ctrl.o: flag_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
flag_ctrl_pro.o: flag_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-19 19:20:15 +04:00
|
|
|
fpu_emu.o: fpu_emu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
init.o: init.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
io.o: io.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h \
|
|
|
|
../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
|
|
../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
|
|
|
|
../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.h
|
2004-06-18 18:11:11 +04:00
|
|
|
io_pro.o: io_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h \
|
|
|
|
../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
|
|
../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
|
|
|
|
../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.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 \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
lazy_flags.o: lazy_flags.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
logical16.o: logical16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
logical32.o: logical32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
logical64.o: logical64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
logical8.o: logical8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
mmx.o: mmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
mult16.o: mult16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
mult32.o: mult32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
mult64.o: mult64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
mult8.o: mult8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
paging.o: paging.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
proc_ctrl.o: proc_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2006-02-14 22:00:08 +03:00
|
|
|
protect_ctrl.o: protect_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
resolve16.o: resolve16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
resolve32.o: resolve32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2002-10-25 01:07:56 +04:00
|
|
|
resolve64.o: resolve64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2001-10-08 00:19:04 +04:00
|
|
|
segment_ctrl.o: segment_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2003-05-15 22:46:01 +04:00
|
|
|
segment_ctrl_pro.o: segment_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
shift16.o: shift16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
shift32.o: shift32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
shift64.o: shift64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2003-11-28 18:07:29 +03:00
|
|
|
shift8.o: shift8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.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 \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h smm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
soft_int.o: soft_int.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2003-11-28 18:07:29 +03:00
|
|
|
sse.o: sse.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
sse_move.o: sse_move.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
sse_pfp.o: sse_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h ../fpu/softfloat-specialize.h ../fpu/softfloat.h
|
2004-06-18 18:11:11 +04:00
|
|
|
sse_rcp.o: sse_rcp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
2007-10-01 23:59:37 +04:00
|
|
|
../cpu/xmm.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-10-01 23:59:37 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
2008-02-13 01:41:39 +03:00
|
|
|
../cpu/xmm.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 ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
stack16.o: stack16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
stack32.o: stack32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
stack64.o: stack64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2001-10-08 00:19:04 +04:00
|
|
|
stack_pro.o: stack_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
string.o: string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
2004-06-18 18:11:11 +04:00
|
|
|
tasking.o: tasking.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
|
|
|
|
../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
|
|
|
|
../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../gui/keymap.h ../instrument/stubs/instrument.h cpu.h instr.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../cpu/lazy_flags.h ../disasm/disasm.h ../config.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
crregs.h descriptor.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
|
|
|
|
../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
|
|
|
|
../cpu/xmm.h
|
2003-11-28 18:07:29 +03:00
|
|
|
vm8086.o: vm8086.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h
|
|
|
|
extdb.o: extdb.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
|
|
../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
|
|
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
|
|
../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
|
2008-01-29 20:13:10 +03:00
|
|
|
../instrument/stubs/instrument.h cpu.h instr.h ../cpu/lazy_flags.h \
|
2007-10-22 02:07:33 +04:00
|
|
|
../disasm/disasm.h ../config.h crregs.h descriptor.h \
|
2007-09-10 20:00:15 +04:00
|
|
|
icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h ../config.h \
|
|
|
|
../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h \
|
|
|
|
../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
|
|
../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
|
|
|
|
../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
|
|
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
|
|
../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
|
|
../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
|
|
../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
|
|
../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
|
|
../iodev/extfpuirq.h ../iodev/gameport.h
|