Changeset 76519 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Dec 30, 2018 5:39:14 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127820
- Location:
- trunk/src/VBox/Devices/PC/BIOS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/ata.h
r70333 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_PC_BIOS_ata_h 56 #define VBOX_INCLUDED_PC_BIOS_ata_h 55 57 56 58 #define ATA_DATA_NO 0x00 … … 181 183 182 184 extern void ata_reset(uint16_t device); 185 186 #endif 187 -
trunk/src/VBox/Devices/PC/BIOS/biosint.h
r69501 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_BIOS_biosint_h 56 #define VBOX_INCLUDED_BIOS_biosint_h 55 57 56 58 /* Compile-time assertion macro. */ … … 302 304 #define PIC_CMD_RD_ISR 0x0B 303 305 #define PIC_CMD_INIT 0x11 306 307 #endif 308 -
trunk/src/VBox/Devices/PC/BIOS/ebda.h
r71426 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_BIOS_ebda_h 56 #define VBOX_INCLUDED_BIOS_ebda_h 55 57 56 58 #include <stdint.h> … … 374 376 375 377 #endif 378 #endif 379 -
trunk/src/VBox/Devices/PC/BIOS/inlines.h
r74613 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_inlines_h 19 #define VBOX_INCLUDED_BIOS_inlines_h 18 20 19 21 extern unsigned inp(unsigned port); … … 238 240 239 241 #endif 242 243 #endif 244 -
trunk/src/VBox/Devices/PC/BIOS/pciutil.h
r69501 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_pciutils_h 19 #define VBOX_INCLUDED_BIOS_pciutils_h 20 18 21 extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id); 19 22 /* Warning: pci_find_classcode destroys the high bits of ECX. */ … … 28 31 extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val); 29 32 33 #endif 34 -
trunk/src/VBox/Devices/PC/BIOS/vds.h
r69500 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_vds_h 19 #define VBOX_INCLUDED_BIOS_vds_h 18 20 19 21 /* Virtual DMA Services (VDS) */ … … 114 116 uint32_t vds_real_to_lin( void __far *ptr ); 115 117 118 #endif 119
Note:
See TracChangeset
for help on using the changeset viewer.