- compilation fixes for MSVC toolkit 2003
[bochs-mirror.git] / cpu / Makefile.in
blobb879dc9de6367853b00e05a96119806f19af50fa
1 # Copyright (C) 2001 MandrakeSoft S.A.
3 # MandrakeSoft S.A.
4 # 43, rue d'Aboukir
5 # 75002 Paris - France
6 # http://www.linux-mandrake.com/
7 # http://www.mandrakesoft.com/
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2 of the License, or (at your option) any later version.
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # Lesser General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this library; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 @SUFFIX_LINE@
26 srcdir = @srcdir@
27 VPATH = @srcdir@
28 top_builddir = ..
29 top_srcdir = @top_srcdir@
31 SHELL = /bin/sh
33 @SET_MAKE@
35 CXX = @CXX@
36 CXXFLAGS = @CXXFLAGS@ @GUI_CXXFLAGS@
38 LDFLAGS = @LDFLAGS@
39 LIBS = @LIBS@
40 X_LIBS = @X_LIBS@
41 X_PRE_LIBS = @X_PRE_LIBS@
42 RANLIB = @RANLIB@
46 BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
48 EXT_DEBUG_OBJS = @EXT_DEBUG_OBJS@
50 # Objects which are synced between the cpu and cpu64 code and
51 # are used for either compile.
52 OBJS = \
53 init.o \
54 cpu.o \
55 icache.o \
56 resolver.o \
57 fetchdecode.o \
58 access.o \
59 access32.o \
60 shift16.o \
61 logical16.o \
62 ctrl_xfer32.o \
63 ctrl_xfer16.o \
64 mmx.o \
65 3dnow.o \
66 fpu_emu.o \
67 sse.o \
68 sse_move.o \
69 sse_pfp.o \
70 sse_rcp.o \
71 sse_string.o \
72 xsave.o \
73 aes.o \
74 soft_int.o \
75 io_pro.o \
76 apic.o \
77 bcd.o \
78 mult16.o \
79 tasking.o \
80 shift32.o \
81 shift8.o \
82 arith8.o \
83 stack16.o \
84 protect_ctrl.o \
85 mult8.o \
86 load32.o \
87 data_xfer8.o \
88 vm8086.o \
89 logical8.o \
90 logical32.o \
91 arith16.o \
92 segment_ctrl.o \
93 data_xfer16.o \
94 data_xfer32.o \
95 exception.o \
96 cpuid.o \
97 proc_ctrl.o \
98 smm.o \
99 lazy_flags.o \
100 flag_ctrl_pro.o \
101 stack32.o \
102 debugstuff.o \
103 flag_ctrl.o \
104 mult32.o \
105 arith32.o \
106 jmp_far.o \
107 call_far.o \
108 ret_far.o \
109 iret.o \
110 ctrl_xfer_pro.o \
111 segment_ctrl_pro.o \
112 io.o \
113 crc32.o \
114 bit.o \
115 bit16.o \
116 bit32.o \
117 string.o \
118 paging.o \
119 $(EXT_DEBUG_OBJS)
121 # Objects which are only used for x86-64 code
122 OBJS64 = \
123 access64.o \
124 arith64.o \
125 ctrl_xfer64.o \
126 data_xfer64.o \
127 fetchdecode64.o \
128 logical64.o \
129 mult64.o \
130 shift64.o \
131 bit64.o \
132 stack64.o
134 BX_INCLUDES = ../bochs.h ../config.h
137 all: libcpu.a
139 .@CPP_SUFFIX@.o:
140 $(CXX) @DASH@c $(BX_INCDIRS) $(CXXFLAGS) @CXXFP@$< @OFP@$@
143 libcpu.a: $(OBJS) @OBJS64@
144 @RMCOMMAND@ libcpu.a
145 @MAKELIB@ $(OBJS) @OBJS64@
146 $(RANLIB) libcpu.a
148 $(OBJS): $(BX_INCLUDES)
150 $(OBJS64): $(BX_INCLUDES)
152 clean:
153 @RMCOMMAND@ *.o
154 @RMCOMMAND@ *.a
156 dist-clean: clean
157 @RMCOMMAND@ Makefile
159 ###########################################
160 # dependencies generated by
161 # gcc -MM -I.. -I../instrument/stubs *.cc | sed 's/\.cc/.@CPP_SUFFIX@/g'
162 ###########################################
163 3dnow.o: 3dnow.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
164 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
165 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
166 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
167 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
168 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
169 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
170 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
171 access.o: access.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
172 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
173 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
174 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
175 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
176 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
177 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
178 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
179 access32.o: access32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
180 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
181 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
182 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
183 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
184 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
185 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
186 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
187 access64.o: access64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
188 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
189 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
190 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
191 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
192 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
193 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
194 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
195 apic.o: apic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
196 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
197 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
198 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
199 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
200 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
201 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
202 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h \
203 ../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
204 ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
205 ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
206 ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
207 ../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
208 ../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
209 ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
210 ../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
211 ../iodev/extfpuirq.h ../iodev/gameport.h
212 arith16.o: arith16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
213 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
214 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
215 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
216 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
217 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
218 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
219 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
220 ../cpu/xmm.h stack.h
221 arith32.o: arith32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
222 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
223 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
224 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
225 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
226 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
227 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
228 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
229 ../cpu/xmm.h stack.h
230 arith64.o: arith64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
231 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
232 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
233 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
234 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
235 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
236 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
237 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
238 ../cpu/xmm.h stack.h
239 arith8.o: arith8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
240 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
241 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
242 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
243 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
244 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
245 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
246 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
247 bcd.o: bcd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
248 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
249 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
250 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
251 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
252 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
253 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
254 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
255 crc32.o: crc32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
256 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
257 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
258 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
259 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
260 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
261 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
262 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
263 bit.o: bit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
264 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
265 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
266 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
267 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
268 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
269 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
270 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
271 bit16.o: bit16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
272 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
273 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
274 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
275 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
276 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
277 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
278 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
279 bit32.o: bit32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
280 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
281 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
282 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
283 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
284 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
285 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
286 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
287 bit64.o: bit64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
288 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
289 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
290 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
291 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
292 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
293 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
294 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
295 call_far.o: call_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
296 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
297 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
298 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
299 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
300 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
301 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
302 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
303 ../cpu/xmm.h stack.h
304 cpu.o: cpu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
305 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
306 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
307 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
308 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
309 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
310 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
311 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h \
312 ../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
313 ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
314 ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
315 ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
316 ../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
317 ../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
318 ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
319 ../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
320 ../iodev/extfpuirq.h ../iodev/gameport.h
321 cpuid.o: cpuid.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
322 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
323 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
324 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
325 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
326 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
327 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
328 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
329 ctrl_xfer16.o: ctrl_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
330 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
331 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
332 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
333 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
334 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
335 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
336 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
337 ../cpu/xmm.h stack.h
338 ctrl_xfer32.o: ctrl_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
339 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
340 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
341 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
342 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
343 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
344 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
345 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
346 ../cpu/xmm.h stack.h
347 ctrl_xfer64.o: ctrl_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
348 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
349 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
350 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
351 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
352 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
353 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
354 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
355 ../cpu/xmm.h stack.h
356 ctrl_xfer_pro.o: ctrl_xfer_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
357 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
358 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
359 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
360 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
361 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
362 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
363 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
364 ../cpu/xmm.h stack.h
365 load32.o: load32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
366 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
367 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
368 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
369 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
370 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
371 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
372 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
373 ../cpu/xmm.h stack.h
374 data_xfer16.o: data_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
375 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
376 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
377 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
378 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
379 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
380 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
381 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
382 ../cpu/xmm.h stack.h
383 data_xfer32.o: data_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
384 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
385 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
386 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
387 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
388 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
389 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
390 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
391 ../cpu/xmm.h stack.h
392 data_xfer64.o: data_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
393 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
394 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
395 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
396 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
397 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
398 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
399 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
400 ../cpu/xmm.h stack.h
401 data_xfer8.o: data_xfer8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
402 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
403 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
404 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
405 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
406 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
407 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
408 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
409 ../cpu/xmm.h stack.h
410 debugstuff.o: debugstuff.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
411 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
412 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
413 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
414 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
415 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
416 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
417 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
418 ../cpu/xmm.h stack.h
419 exception.o: exception.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
420 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
421 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
422 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
423 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
424 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
425 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
426 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
427 ../cpu/xmm.h stack.h ../iodev/iodev.h ../bochs.h ../iodev/pci.h \
428 ../iodev/pci2isa.h ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h \
429 ../iodev/vga.h ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
430 ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
431 ../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
432 ../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
433 ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
434 ../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
435 ../iodev/extfpuirq.h ../iodev/gameport.h
436 fetchdecode.o: fetchdecode.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
437 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
438 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
439 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
440 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
441 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
442 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
443 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
444 ../cpu/xmm.h stack.h fetchdecode.h ia_opcodes.h
445 fetchdecode64.o: fetchdecode64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
446 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
447 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
448 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
449 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
450 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
451 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
452 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
453 ../cpu/xmm.h stack.h fetchdecode.h ia_opcodes.h
454 flag_ctrl.o: flag_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
455 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
456 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
457 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
458 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
459 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
460 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
461 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
462 ../cpu/xmm.h stack.h
463 flag_ctrl_pro.o: flag_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
464 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
465 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
466 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
467 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
468 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
469 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
470 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
471 ../cpu/xmm.h stack.h
472 fpu_emu.o: fpu_emu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
473 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
474 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
475 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
476 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
477 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
478 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
479 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
480 ../cpu/xmm.h stack.h
481 icache.o: icache.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
482 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
483 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
484 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
485 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
486 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
487 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
488 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
489 init.o: init.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
490 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
491 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
492 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
493 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
494 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
495 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
496 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
497 io.o: io.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
498 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
499 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
500 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
501 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
502 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
503 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
504 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h \
505 ../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
506 ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
507 ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
508 ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
509 ../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
510 ../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
511 ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
512 ../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
513 ../iodev/extfpuirq.h ../iodev/gameport.h
514 io_pro.o: io_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
515 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
516 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
517 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
518 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
519 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
520 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
521 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h \
522 ../iodev/iodev.h ../bochs.h ../iodev/pci.h ../iodev/pci2isa.h \
523 ../iodev/pci_ide.h ../iodev/acpi.h ../iodev/pcivga.h ../iodev/vga.h \
524 ../iodev/svga_cirrus.h ../iodev/ioapic.h ../cpu/apic.h \
525 ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
526 ../iodev/harddrv.h ../iodev/keyboard.h ../iodev/parallel.h \
527 ../iodev/pic.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
528 ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
529 ../iodev/ne2k.h ../iodev/guest2host.h ../iodev/slowdown_timer.h \
530 ../iodev/extfpuirq.h ../iodev/gameport.h
531 iret.o: iret.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
532 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
533 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
534 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
535 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
536 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
537 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
538 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
539 jmp_far.o: jmp_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
540 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
541 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
542 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
543 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
544 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
545 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
546 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
547 ../cpu/xmm.h stack.h
548 lazy_flags.o: lazy_flags.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
549 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
550 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
551 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
552 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
553 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
554 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
555 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
556 ../cpu/xmm.h stack.h
557 logical16.o: logical16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
558 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
559 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
560 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
561 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
562 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
563 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
564 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
565 ../cpu/xmm.h stack.h
566 logical32.o: logical32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
567 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
568 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
569 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
570 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
571 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
572 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
573 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
574 ../cpu/xmm.h stack.h
575 logical64.o: logical64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
576 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
577 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
578 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
579 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
580 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
581 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
582 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
583 ../cpu/xmm.h stack.h
584 logical8.o: logical8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
585 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
586 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
587 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
588 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
589 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
590 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
591 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
592 ../cpu/xmm.h stack.h
593 mmx.o: mmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
594 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
595 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
596 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
597 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
598 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
599 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
600 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
601 mult16.o: mult16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
602 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
603 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
604 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
605 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
606 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
607 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
608 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
609 mult32.o: mult32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
610 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
611 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
612 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
613 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
614 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
615 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
616 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
617 mult64.o: mult64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
618 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
619 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
620 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
621 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
622 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
623 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
624 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
625 mult8.o: mult8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
626 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
627 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
628 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
629 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
630 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
631 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
632 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
633 paging.o: paging.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
634 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
635 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
636 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
637 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
638 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
639 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
640 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
641 proc_ctrl.o: proc_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
642 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
643 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
644 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
645 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
646 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
647 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
648 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
649 ../cpu/xmm.h stack.h
650 protect_ctrl.o: protect_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
651 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
652 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
653 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
654 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
655 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
656 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
657 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
658 ../cpu/xmm.h stack.h
659 resolver.o: resolver.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
660 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
661 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
662 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
663 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
664 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
665 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
666 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
667 ../cpu/xmm.h stack.h
668 ret_far.o: ret_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
669 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
670 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
671 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
672 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
673 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
674 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
675 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
676 ../cpu/xmm.h stack.h
677 segment_ctrl.o: segment_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
678 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
679 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
680 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
681 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
682 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
683 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
684 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
685 ../cpu/xmm.h stack.h
686 segment_ctrl_pro.o: segment_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
687 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
688 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
689 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
690 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
691 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
692 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
693 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
694 ../cpu/xmm.h stack.h
695 shift16.o: shift16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
696 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
697 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
698 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
699 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
700 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
701 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
702 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
703 ../cpu/xmm.h stack.h
704 shift32.o: shift32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
705 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
706 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
707 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
708 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
709 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
710 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
711 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
712 ../cpu/xmm.h stack.h
713 shift64.o: shift64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
714 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
715 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
716 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
717 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
718 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
719 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
720 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
721 ../cpu/xmm.h stack.h
722 shift8.o: shift8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
723 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
724 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
725 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
726 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
727 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
728 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
729 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
730 smm.o: smm.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
731 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
732 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
733 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
734 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
735 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
736 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
737 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h smm.h
738 soft_int.o: soft_int.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
739 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
740 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
741 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
742 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
743 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
744 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
745 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
746 ../cpu/xmm.h stack.h
747 sse.o: sse.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
748 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
749 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
750 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
751 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
752 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
753 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
754 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
755 sse_move.o: sse_move.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
756 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
757 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
758 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
759 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
760 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
761 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
762 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
763 ../cpu/xmm.h stack.h
764 sse_pfp.o: sse_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
765 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
766 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
767 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
768 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
769 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
770 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
771 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
772 ../cpu/xmm.h stack.h ../fpu/softfloat-specialize.h ../fpu/softfloat.h
773 sse_rcp.o: sse_rcp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
774 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
775 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
776 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
777 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
778 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
779 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
780 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
781 ../cpu/xmm.h stack.h ../fpu/softfloat-specialize.h ../fpu/softfloat.h
782 sse_string.o: sse_string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
783 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
784 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
785 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
786 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
787 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
788 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
789 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
790 ../cpu/xmm.h stack.h
791 stack16.o: stack16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
792 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
793 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
794 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
795 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
796 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
797 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
798 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
799 ../cpu/xmm.h stack.h
800 stack32.o: stack32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
801 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
802 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
803 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
804 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
805 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
806 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
807 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
808 ../cpu/xmm.h stack.h
809 stack64.o: stack64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
810 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
811 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
812 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
813 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
814 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
815 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
816 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
817 ../cpu/xmm.h stack.h
818 string.o: string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
819 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
820 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
821 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
822 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
823 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
824 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
825 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
826 tasking.o: tasking.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
827 ../bx_debug/debug.h ../config.h ../osdep.h ../bxversion.h \
828 ../gui/siminterface.h ../memory/memory.h ../pc_system.h ../plugin.h \
829 ../extplugin.h ../gui/gui.h ../gui/textconfig.h ../config.h \
830 ../gui/keymap.h ../instrument/stubs/instrument.h cpu.h \
831 ../disasm/disasm.h ../config.h crregs.h descriptor.h instr.h \
832 lazy_flags.h icache.h apic.h ../cpu/i387.h ../fpu/softfloat.h \
833 ../config.h ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
834 ../cpu/xmm.h stack.h
835 vm8086.o: vm8086.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
836 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
837 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
838 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
839 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
840 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
841 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
842 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
843 xsave.o: xsave.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
844 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
845 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
846 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
847 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
848 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
849 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
850 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h
851 aes.o: aes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
852 ../config.h ../osdep.h ../bxversion.h ../gui/siminterface.h \
853 ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
854 ../gui/gui.h ../gui/textconfig.h ../config.h ../gui/keymap.h \
855 ../instrument/stubs/instrument.h cpu.h ../disasm/disasm.h ../config.h \
856 crregs.h descriptor.h instr.h lazy_flags.h icache.h apic.h \
857 ../cpu/i387.h ../fpu/softfloat.h ../config.h ../fpu/tag_w.h \
858 ../fpu/status_w.h ../fpu/control_w.h ../cpu/xmm.h stack.h