Changeset 60484 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Apr 14, 2016 9:25:51 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/Makefile.kmk
r60441 r60484 69 69 pciutil.c \ 70 70 vds.c \ 71 ../../BiosCommonCode/support.asm \ 71 ../../BiosCommonCode/__U4M.asm \ 72 ../../BiosCommonCode/__U4D.asm \ 73 ../../BiosCommonCode/__U8RS.asm \ 74 ../../BiosCommonCode/__U8LS.asm \ 75 ../../BiosCommonCode/fmemset.asm \ 76 ../../BiosCommonCode/fmemcpy.asm \ 72 77 pcibio32.asm \ 73 78 apm_pm.asm \ … … 82 87 pci32.c 83 88 89 ../../BiosCommonCode/DoUInt32Div.c_CFLAGS = -mc # asm.h and uint32.h both require far data pointers by default. 90 84 91 MISCBINS += VBoxPcBios286 85 92 VBoxPcBios286_EXTENDS = VBoxPcBios386 86 93 VBoxPcBios286_CFLAGS = -2 87 94 VBoxPcBios286_DEFS = $(filter-out VBOX_BIOS_CPU=80386,$(VBoxPcBios386_DEFS)) VBOX_BIOS_CPU=80286 95 VBoxPcBios286_SOURCES = $(VBoxPcBios386_SOURCES) \ 96 ../../BiosCommonCode/DoUInt32Div.c \ 97 ../../BiosCommonCode/ASMBitLastSetU16.asm 88 98 89 99 MISCBINS += VBoxPcBios8086 … … 91 101 VBoxPcBios8086_CFLAGS = -0 92 102 VBoxPcBios8086_DEFS = $(filter-out VBOX_BIOS_CPU=80386,$(VBoxPcBios386_DEFS)) VBOX_BIOS_CPU=8086 103 VBoxPcBios8086_SOURCES = $(VBoxPcBios386_SOURCES) \ 104 ../../BiosCommonCode/DoUInt32Div.c \ 105 ../../BiosCommonCode/ASMBitLastSetU16.asm 93 106 94 107
Note:
See TracChangeset
for help on using the changeset viewer.