Changeset 41991 in vbox
- Timestamp:
- Jul 3, 2012 8:46:01 AM (12 years ago)
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/pcibio32.asm
r40694 r41991 75 75 76 76 ifdef PCI_FIXED_HOST_BRIDGE_2 77 ; 1Eh << 11 78 mov eax, 8000f000h 77 ; 18h << 11 78 mov eax, 8000c000h 79 mov dx, PCI_CFG1 80 out dx, eax 81 mov dx, PCI_CFG2 82 in eax, dx 83 cmp eax, PCI_FIXED_HOST_BRIDGE_2 84 je device_ok 85 ; 19h << 11 86 mov eax, 8000c800h 79 87 mov dx, PCI_CFG1 80 88 out dx, eax -
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r41989 r41991 10003 10003 10004 10004 #ifdef PCI_FIXED_HOST_BRIDGE_2 10005 /* 0x1e << 11 */ 10006 mov eax, #0x8000f000 10005 /* 0x18 << 11 */ 10006 mov eax, #0x8000c000 10007 mov dx, #0x0cf8 10008 out dx, eax 10009 mov dx, #0x0cfc 10010 in eax, dx 10011 cmp eax, #PCI_FIXED_HOST_BRIDGE_2 10012 je device_ok 10013 /* 0x19 << 11 */ 10014 mov eax, #0x8000c800 10007 10015 mov dx, #0x0cf8 10008 10016 out dx, eax
Note:
See TracChangeset
for help on using the changeset viewer.