Changeset 7759 in vbox for trunk/src/VBox/Devices/Graphics/BIOS
- Timestamp:
- Apr 5, 2008 11:36:02 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29306
- Location:
- trunk/src/VBox/Devices/Graphics/BIOS
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/Makefile.kmk
r5999 r7759 47 47 $(PATH_TARGET)/vgabios.bin \ 48 48 $(PATH_TARGET)/VgaBiosBin.c \ 49 $(PATH_TARGET)/VgaDefBiosLogo.c \ 49 50 \ 50 51 $(PATH_TARGET)/_vgabios-cirrus_.c \ … … 97 98 $(QUIET)$(TARGET_vgabiossums) $@ 98 99 100 # 101 # The VGA BIOS Logo. 102 # 103 LIBRARIES += VgaDefBiosLogo 104 VgaDefBiosLogo_TEMPLATE = VBOXR3 105 VgaDefBiosLogo_INCS = $(VBOX_PATH_DEVICES_SRC) 106 VgaDefBiosLogo_SOURCES = $(PATH_TARGET)/VgaDefBiosLogo.c 107 108 # 109 # Rule for making the bios logo. 110 # 111 $(PATH_TARGET)/VgaDefBiosLogo.c: $(PATH_SUB_CURRENT)/innotek_logo.bmp $(VBOX_BIN2C) 112 $(call MSG_TOOL,bin2c,VgaBiosBin,$<,$@) 113 $(QUIET)$(VBOX_BIN2C) -max 64 VgaDefBiosLogo $< $@ 114 99 115 100 116 include $(PATH_KBUILD)/subfooter.kmk -
trunk/src/VBox/Devices/Graphics/BIOS/vbe.h
r5450 r7759 312 312 /** 313 313 * VBE Bios Extra Data structure. 314 * @remark duplicated in vga_int.h.314 * @remark duplicated in DevVGA.h. 315 315 */ 316 316 typedef struct VBEHeader … … 323 323 324 324 /** The value of the VBEHEADER::u16Signature field. 325 * @remark duplicated in vga_int.h. */325 * @remark duplicated in DevVGA.h. */ 326 326 #define VBEHEADER_MAGIC 0x77CC 327 327 328 328 /** The extra port which is used to read the mode list. 329 * @remark duplicated in vga_int.h. */329 * @remark duplicated in DevVGA.h. */ 330 330 #define VBE_EXTRA_PORT 0x3b6 331 331 332 332 /** The extra port which is used for debug printf. 333 * @remark duplicated in vga_int.h. */333 * @remark duplicated in DevVGA.h. */ 334 334 #define VBE_PRINTF_PORT 0x3b7 335 335 336 337 336 #endif
Note:
See TracChangeset
for help on using the changeset viewer.