1924 lines
112 KiB
Plaintext
1924 lines
112 KiB
Plaintext
----------------------------------------------------------------------
|
|
Patch name: patch.extfpuirq
|
|
Author: Christpohe Bothamy
|
|
Date: Mon Jan 6 01:48:51 CET 2003
|
|
Status: applied to main code
|
|
|
|
Detailed description:
|
|
This patch adds msdos compatibility FPU exception support. (irq 13)
|
|
The IGNNE pin is no handled yet. It works with this sample Turbo C
|
|
program :
|
|
main()
|
|
{
|
|
double a=log(-1.0);
|
|
}
|
|
|
|
Patch was created with:
|
|
cvs diff -u
|
|
Apply patch to what version:
|
|
cvs checked out on Mon Jan 6 01:48:51 CET 2003
|
|
Instructions:
|
|
To patch, go to main bochs directory.
|
|
Type "patch -p0 < THIS_PATCH_FILE".
|
|
----------------------------------------------------------------------
|
|
Index: bochs.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/bochs.h,v
|
|
retrieving revision 1.115
|
|
diff -u -r1.115 bochs.h
|
|
--- bochs.h 19 Dec 2002 06:05:18 -0000 1.115
|
|
+++ bochs.h 6 Jan 2003 02:09:45 -0000
|
|
@@ -298,7 +298,7 @@
|
|
CPU2LOG, CPU3LOG, CPU4LOG, CPU5LOG, CPU6LOG, CPU7LOG, CPU8LOG, CPU9LOG,
|
|
CPU10LOG, CPU11LOG, CPU12LOG, CPU13LOG, CPU14LOG, CPU15LOG, CTRLLOG,
|
|
UNMAPLOG, SERRLOG, BIOSLOG, PIT81LOG, PIT82LOG, IODEBUGLOG, PCI2ISALOG,
|
|
- PLUGINLOG
|
|
+ PLUGINLOG, EXTFPUIRQLOG
|
|
};
|
|
|
|
class BOCHSAPI iofunctions {
|
|
Index: config.h.in
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/config.h.in,v
|
|
retrieving revision 1.100
|
|
diff -u -r1.100 config.h.in
|
|
--- config.h.in 24 Dec 2002 04:03:15 -0000 1.100
|
|
+++ config.h.in 6 Jan 2003 02:09:46 -0000
|
|
@@ -242,6 +242,7 @@
|
|
#define BX_USE_PCI_SMF 1 // PCI
|
|
#define BX_USE_P2I_SMF 1 // PCI-to-ISA bridge
|
|
#define BX_USE_NE2K_SMF 1 // NE2K
|
|
+#define BX_USE_EFI_SMF 1 // External FPU IRQ
|
|
|
|
#define BX_PLUGINS 0
|
|
#define BX_HAVE_DLFCN_H 0
|
|
@@ -252,7 +253,7 @@
|
|
|| !BX_USE_PAR_SMF || !BX_USE_PIC_SMF || !BX_USE_PIT_SMF \
|
|
|| !BX_USE_SER_SMF || !BX_USE_UM_SMF || !BX_USE_VGA_SMF \
|
|
|| !BX_USE_SB16_SMF || !BX_USE_DEV_SMF || !BX_USE_PCI_SMF \
|
|
- || !BX_USE_P2I_SMF || !BX_USE_NE2K_SMF)
|
|
+ || !BX_USE_P2I_SMF || !BX_USE_NE2K_SMF || !BX_USE_EFI_SMF)
|
|
#error You must use SMF to have plugins
|
|
#endif
|
|
|
|
Index: plugin.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/plugin.h,v
|
|
retrieving revision 1.12
|
|
diff -u -r1.12 plugin.h
|
|
--- plugin.h 28 Dec 2002 11:49:16 -0000 1.12
|
|
+++ plugin.h 6 Jan 2003 02:09:46 -0000
|
|
@@ -21,21 +21,22 @@
|
|
extern "C" {
|
|
#endif
|
|
|
|
-#define BX_PLUGIN_UNMAPPED "unmapped"
|
|
-#define BX_PLUGIN_BIOSDEV "biosdev"
|
|
-#define BX_PLUGIN_CMOS "cmos"
|
|
-#define BX_PLUGIN_VGA "vga"
|
|
-#define BX_PLUGIN_FLOPPY "floppy"
|
|
-#define BX_PLUGIN_PARALLEL "parallel"
|
|
-#define BX_PLUGIN_SERIAL "serial"
|
|
-#define BX_PLUGIN_KEYBOARD "keyboard"
|
|
-#define BX_PLUGIN_HARDDRV "harddrv"
|
|
-#define BX_PLUGIN_DMA "dma"
|
|
-#define BX_PLUGIN_PIC "pic"
|
|
-#define BX_PLUGIN_PCI "pci"
|
|
-#define BX_PLUGIN_PCI2ISA "pci2isa"
|
|
-#define BX_PLUGIN_SB16 "sb16"
|
|
-#define BX_PLUGIN_NE2K "ne2k"
|
|
+#define BX_PLUGIN_UNMAPPED "unmapped"
|
|
+#define BX_PLUGIN_BIOSDEV " biosdev"
|
|
+#define BX_PLUGIN_CMOS "cmos"
|
|
+#define BX_PLUGIN_VGA "vga"
|
|
+#define BX_PLUGIN_FLOPPY "floppy"
|
|
+#define BX_PLUGIN_PARALLEL "parallel"
|
|
+#define BX_PLUGIN_SERIAL "serial"
|
|
+#define BX_PLUGIN_KEYBOARD "keyboard"
|
|
+#define BX_PLUGIN_HARDDRV "harddrv"
|
|
+#define BX_PLUGIN_DMA "dma"
|
|
+#define BX_PLUGIN_PIC "pic"
|
|
+#define BX_PLUGIN_PCI "pci"
|
|
+#define BX_PLUGIN_PCI2ISA "pci2isa"
|
|
+#define BX_PLUGIN_SB16 "sb16"
|
|
+#define BX_PLUGIN_NE2K "ne2k"
|
|
+#define BX_PLUGIN_EXTFPUIRQ "extfpuirq"
|
|
|
|
#define BX_REGISTER_DEVICE pluginRegisterDevice
|
|
#define BX_REGISTER_DEVICE_DEVMODEL(a,b,c,d) pluginRegisterDeviceDevmodel(a,b,c,d)
|
|
@@ -300,6 +301,7 @@
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(pci2isa)
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(sb16)
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(ne2k)
|
|
+DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(extfpuirq)
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(amigaos)
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(beos)
|
|
DECLARE_PLUGIN_INIT_FINI_FOR_MODULE(carbon)
|
|
Index: fpu/wmFPUemu_glue.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/wmFPUemu_glue.cc,v
|
|
retrieving revision 1.16
|
|
diff -u -r1.16 wmFPUemu_glue.cc
|
|
--- fpu/wmFPUemu_glue.cc 3 Jan 2003 00:20:05 -0000 1.16
|
|
+++ fpu/wmFPUemu_glue.cc 6 Jan 2003 02:09:47 -0000
|
|
@@ -277,7 +277,10 @@
|
|
case SIGFPE:
|
|
if (fpu_cpu_ptr->cr0.ne == 0) {
|
|
// MSDOS compatibility external interrupt (IRQ13)
|
|
- BX_PANIC (("math_abort: MSDOS compatibility not supported yet"));
|
|
+ BX_INFO (("math_abort: MSDOS compatibility FPU exception"));
|
|
+
|
|
+ DEV_pic_raise_irq(13);
|
|
+ return;
|
|
}
|
|
fpu_cpu_ptr->exception(BX_MF_EXCEPTION, 0, 0);
|
|
// execution does not reach here
|
|
Index: iodev/Makefile.in
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/Makefile.in,v
|
|
retrieving revision 1.34
|
|
diff -u -r1.34 Makefile.in
|
|
--- iodev/Makefile.in 25 Nov 2002 15:05:50 -0000 1.34
|
|
+++ iodev/Makefile.in 6 Jan 2003 02:09:47 -0000
|
|
@@ -84,6 +84,7 @@
|
|
harddrv.o \
|
|
dma.o \
|
|
unmapped.o \
|
|
+ extfpuirq.o \
|
|
@PCI_OBJ@ \
|
|
@SB16_OBJS@ \
|
|
@NE2K_OBJS@
|
|
@@ -174,867 +175,1011 @@
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
cdrom.o: cdrom.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
cdrom_amigaos.o: cdrom_amigaos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scsi_commands.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scsi_commands.h
|
|
cdrom_beos.o: cdrom_beos.@CPP_SUFFIX@ cdrom_beos.h
|
|
cmos.o: cmos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
crc32.o: crc32.@CPP_SUFFIX@ crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
devices.o: devices.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
dma.o: dma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
eth.o: eth.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
eth_arpback.o: eth_arpback.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_fbsd.o: eth_fbsd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_linux.o: eth_linux.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_null.o: eth_null.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_packetmaker.o: eth_packetmaker.@CPP_SUFFIX@ ../bochs.h ../config.h \
|
|
../osdep.h ../debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../state_file.h ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h \
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
../ltdl.h ../gui/gui.h ../gui/textconfig.h ../gui/keymap.h \
|
|
- ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_tap.o: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_tap.o: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tuntap.o: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
-eth_tuntap.o: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_win32.o: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
-eth_win32.o: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+extfpuirq.o: extfpuirq.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
floppy.o: floppy.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
guest2host.o: guest2host.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
harddrv.o: harddrv.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
ioapic.o: ioapic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
iodebug.o: iodebug.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
keyboard.o: keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scancodes.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scancodes.h
|
|
ne2k.o: ne2k.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
parallel.o: parallel.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
pci.o: pci.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+pci2ide.o: pci2ide.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pci2isa.o: pci2isa.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
pic.o: pic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pit.o: pit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pit82c54.o: pit82c54.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h pit82c54.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h pit82c54.h
|
|
pit_wrap.o: pit_wrap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h pit_wrap.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h pit_wrap.h
|
|
+plex-keyboard.o: plex-keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h plex-keyboard.h
|
|
sb16.o: sb16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
scancodes.o: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scancodes.h
|
|
-serial.o: serial.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scancodes.h
|
|
+serial.o: serial.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+ ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
serial_raw.o: serial_raw.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
slowdown_timer.o: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
soundlnx.o: soundlnx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
soundwin.o: soundwin.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
unmapped.o: unmapped.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
vga.o: vga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
biosdev.lo: biosdev.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
cdrom.lo: cdrom.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
cdrom_amigaos.lo: cdrom_amigaos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scsi_commands.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scsi_commands.h
|
|
cdrom_beos.lo: cdrom_beos.@CPP_SUFFIX@ cdrom_beos.h
|
|
cmos.lo: cmos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
crc32.lo: crc32.@CPP_SUFFIX@ crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
devices.lo: devices.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
dma.lo: dma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
eth.lo: eth.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
eth_arpback.lo: eth_arpback.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_fbsd.lo: eth_fbsd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_linux.lo: eth_linux.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_null.lo: eth_null.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
eth_packetmaker.lo: eth_packetmaker.@CPP_SUFFIX@ ../bochs.h ../config.h \
|
|
../osdep.h ../debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
../state_file.h ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h \
|
|
../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
../ltdl.h ../gui/gui.h ../gui/textconfig.h ../gui/keymap.h \
|
|
- ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_tap.lo: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_tap.lo: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tuntap.lo: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
-eth_tuntap.lo: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_win32.lo: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
-eth_win32.lo: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+extfpuirq.lo: extfpuirq.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
floppy.lo: floppy.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
guest2host.lo: guest2host.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
harddrv.lo: harddrv.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
ioapic.lo: ioapic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
iodebug.lo: iodebug.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
keyboard.lo: keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scancodes.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scancodes.h
|
|
ne2k.lo: ne2k.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
parallel.lo: parallel.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
pci.lo: pci.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+pci2ide.lo: pci2ide.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pci2isa.lo: pci2isa.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
pic.lo: pic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pit.lo: pit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
pit82c54.lo: pit82c54.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h pit82c54.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h pit82c54.h
|
|
pit_wrap.lo: pit_wrap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h pit_wrap.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h pit_wrap.h
|
|
+plex-keyboard.lo: plex-keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h plex-keyboard.h
|
|
sb16.lo: sb16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
scancodes.lo: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h \
|
|
- scancodes.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h scancodes.h
|
|
serial.lo: serial.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
serial_raw.lo: serial_raw.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
slowdown_timer.lo: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
soundlnx.lo: soundlnx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
soundwin.lo: soundwin.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
unmapped.lo: unmapped.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
- ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
- ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
- ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../instrument/stubs/instrument.h
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
+ ../iodev/pci2isa.h ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h \
|
|
+ ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
vga.lo: vga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../ltdl.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
- ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
Index: iodev/devices.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/devices.cc,v
|
|
retrieving revision 1.47
|
|
diff -u -r1.47 devices.cc
|
|
--- iodev/devices.cc 3 Jan 2003 11:43:24 -0000 1.47
|
|
+++ iodev/devices.cc 6 Jan 2003 02:09:47 -0000
|
|
@@ -66,6 +66,7 @@
|
|
pluginHardDrive = &stubHardDrive;
|
|
pluginSB16Device = NULL;
|
|
pluginNE2kDevice =&stubNE2k;
|
|
+ pluginExtFpuIrq = NULL;
|
|
g2h = NULL;
|
|
#if BX_IODEBUG_SUPPORT
|
|
iodebug = NULL;
|
|
@@ -137,6 +138,7 @@
|
|
PLUG_load_plugin(serial, PLUGTYPE_OPTIONAL);
|
|
if (is_parallel_enabled ())
|
|
PLUG_load_plugin(parallel, PLUGTYPE_OPTIONAL);
|
|
+ PLUG_load_plugin(extfpuirq, PLUGTYPE_OPTIONAL);
|
|
|
|
// Start with registering the default (unmapped) handler
|
|
pluginUnmapped->init ();
|
|
Index: iodev/iodev.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/iodev.h,v
|
|
retrieving revision 1.26
|
|
diff -u -r1.26 iodev.h
|
|
--- iodev/iodev.h 28 Dec 2002 11:49:17 -0000 1.26
|
|
+++ iodev/iodev.h 6 Jan 2003 02:09:48 -0000
|
|
@@ -311,6 +311,7 @@
|
|
bx_devmodel_c *pluginSB16Device;
|
|
bx_ne2k_stub_c *pluginNE2kDevice;
|
|
bx_g2h_c *g2h;
|
|
+ bx_devmodel_c *pluginExtFpuIrq;
|
|
#if BX_IODEBUG_SUPPORT
|
|
bx_iodebug_c *iodebug;
|
|
#endif
|
|
@@ -404,3 +405,4 @@
|
|
#include "iodev/ne2k.h"
|
|
#include "iodev/guest2host.h"
|
|
#include "iodev/slowdown_timer.h"
|
|
+#include "iodev/extfpuirq.h"
|
|
--- /dev/null Sat Mar 23 22:39:35 2002
|
|
+++ iodev/extfpuirq.cc Mon Jan 6 00:37:46 2003
|
|
@@ -0,0 +1,135 @@
|
|
+/////////////////////////////////////////////////////////////////////////
|
|
+// $Id: patch.extfpuirq,v 1.2 2003-02-06 17:28:22 cbothamy Exp $
|
|
+/////////////////////////////////////////////////////////////////////////
|
|
+//
|
|
+// Copyright (C) 2002 MandrakeSoft S.A.
|
|
+//
|
|
+// 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
|
|
+
|
|
+//
|
|
+// External circuit for MSDOS compatible FPU exceptions
|
|
+//
|
|
+
|
|
+// Define BX_PLUGGABLE in files that can be compiled into plugins. For
|
|
+// platforms that require a special tag on exported symbols, BX_PLUGGABLE
|
|
+// is used to know when we are exporting symbols and when we are importing.
|
|
+#define BX_PLUGGABLE
|
|
+
|
|
+#include "bochs.h"
|
|
+
|
|
+#define LOG_THIS theExternalFpuIrq->
|
|
+
|
|
+bx_extfpuirq_c *theExternalFpuIrq = NULL;
|
|
+
|
|
+ int
|
|
+libextfpuirq_LTX_plugin_init(plugin_t *plugin, plugintype_t type, int argc, char *argv[])
|
|
+{
|
|
+ theExternalFpuIrq = new bx_extfpuirq_c ();
|
|
+ bx_devices.pluginPci2IsaBridge = theExternalFpuIrq;
|
|
+ BX_REGISTER_DEVICE_DEVMODEL(plugin, type, theExternalFpuIrq, BX_PLUGIN_PCI2ISA);
|
|
+ return(0); // Success
|
|
+}
|
|
+
|
|
+ void
|
|
+libextfpuirq_LTX_plugin_fini(void)
|
|
+{
|
|
+}
|
|
+
|
|
+bx_extfpuirq_c::bx_extfpuirq_c(void)
|
|
+{
|
|
+ put("EFIRQ");
|
|
+ settype(EXTFPUIRQLOG);
|
|
+}
|
|
+
|
|
+bx_extfpuirq_c::~bx_extfpuirq_c(void)
|
|
+{
|
|
+ // nothing for now
|
|
+ BX_DEBUG(("Exit."));
|
|
+}
|
|
+
|
|
+
|
|
+ void
|
|
+bx_extfpuirq_c::init(void)
|
|
+{
|
|
+ // called once when bochs initializes
|
|
+ DEV_register_iowrite_handler(this, write_handler, 0x00F0, "External FPU IRQ", 7);
|
|
+ DEV_register_ioread_handler(this, read_handler, 0x00F0, "External FPU IRQ", 7);
|
|
+ DEV_register_irq(13, "External FPU IRQ");
|
|
+}
|
|
+
|
|
+ void
|
|
+bx_extfpuirq_c::reset(unsigned type)
|
|
+{
|
|
+ // We should handle IGNNE here
|
|
+ DEV_pic_lower_irq(13);
|
|
+}
|
|
+
|
|
+
|
|
+ // static IO port read callback handler
|
|
+ // redirects to non-static class handler to avoid virtual functions
|
|
+
|
|
+ Bit32u
|
|
+bx_extfpuirq_c::read_handler(void *this_ptr, Bit32u address, unsigned io_len)
|
|
+{
|
|
+#if !BX_USE_EFI_SMF
|
|
+ bx_extfpuirq_c *class_ptr = (bx_extfpuirq_c *) this_ptr;
|
|
+
|
|
+ return( class_ptr->read(address, io_len) );
|
|
+}
|
|
+
|
|
+
|
|
+ Bit32u
|
|
+bx_extfpuirq_c::read(Bit32u address, unsigned io_len)
|
|
+{
|
|
+#else
|
|
+ UNUSED(this_ptr);
|
|
+#endif // !BX_USE_EFI_SMF
|
|
+
|
|
+ // We should handle IGNNE here
|
|
+ DEV_pic_lower_irq(13);
|
|
+
|
|
+ return(0x0);
|
|
+}
|
|
+
|
|
+
|
|
+ // static IO port write callback handler
|
|
+ // redirects to non-static class handler to avoid virtual functions
|
|
+
|
|
+ void
|
|
+bx_extfpuirq_c::write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len)
|
|
+{
|
|
+#if !BX_USE_EFI_SMF
|
|
+ bx_extfpuirq_c *class_ptr = (bx_extfpuirq_c *) this_ptr;
|
|
+
|
|
+ class_ptr->write(address, value, io_len);
|
|
+}
|
|
+
|
|
+ void
|
|
+bx_extfpuirq_c::write(Bit32u address, Bit32u value, unsigned io_len)
|
|
+{
|
|
+#else
|
|
+ UNUSED(this_ptr);
|
|
+#endif // !BX_USE_EFI_SMF
|
|
+
|
|
+ // We should handle IGNNE here
|
|
+ DEV_pic_lower_irq(13);
|
|
+}
|
|
+
|
|
--- /dev/null Sat Mar 23 22:39:35 2002
|
|
+++ iodev/extfpuirq.h Sun Jan 5 23:22:35 2003
|
|
@@ -0,0 +1,53 @@
|
|
+/////////////////////////////////////////////////////////////////////////
|
|
+// $Id: patch.extfpuirq,v 1.2 2003-02-06 17:28:22 cbothamy Exp $
|
|
+/////////////////////////////////////////////////////////////////////////
|
|
+//
|
|
+// Copyright (C) 2002 MandrakeSoft S.A.
|
|
+//
|
|
+// 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
|
|
+
|
|
+
|
|
+#if BX_USE_EFI_SMF
|
|
+# define BX_EXTFPUIRQ_SMF static
|
|
+# define BX_EXTFPUIRQ_THIS theExternalFpuIrq->
|
|
+#else
|
|
+# define BX_EXTFPUIRQ_SMF
|
|
+# define BX_EXTFPUIRQ_THIS this->
|
|
+#endif
|
|
+
|
|
+
|
|
+class bx_extfpuirq_c : public bx_devmodel_c {
|
|
+
|
|
+public:
|
|
+ bx_extfpuirq_c(void);
|
|
+ ~bx_extfpuirq_c(void);
|
|
+ virtual void init(void);
|
|
+ virtual void reset(unsigned type);
|
|
+
|
|
+private:
|
|
+
|
|
+ static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
+ static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
|
+#if !BX_USE_EFI_SMF
|
|
+ Bit32u read(Bit32u address, unsigned io_len);
|
|
+ void write(Bit32u address, Bit32u value, unsigned io_len);
|
|
+#endif
|
|
+ };
|